summaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-2.6.35/975-hifn795x-byteswap.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-04-17 18:32:21 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-04-17 18:32:21 +0000
commit5a0df036b0c176df9f61fe45c625951c779c59c2 (patch)
treeea61ce65d37cefa8c76025d53028842fcef84e28 /target/linux/generic/patches-2.6.35/975-hifn795x-byteswap.patch
parenta621c3c24a8050f305262903e78a26261a49e3d0 (diff)
downloadmaster-31e0f0ae-5a0df036b0c176df9f61fe45c625951c779c59c2.tar.gz
master-31e0f0ae-5a0df036b0c176df9f61fe45c625951c779c59c2.tar.bz2
master-31e0f0ae-5a0df036b0c176df9f61fe45c625951c779c59c2.zip
Remove 2.6.35. It's not used anymore.
Signed-off-by: Jochen Friedrich <jochen@scram.de> SVN-Revision: 26704
Diffstat (limited to 'target/linux/generic/patches-2.6.35/975-hifn795x-byteswap.patch')
-rw-r--r--target/linux/generic/patches-2.6.35/975-hifn795x-byteswap.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/target/linux/generic/patches-2.6.35/975-hifn795x-byteswap.patch b/target/linux/generic/patches-2.6.35/975-hifn795x-byteswap.patch
deleted file mode 100644
index 3a37c951ec..0000000000
--- a/target/linux/generic/patches-2.6.35/975-hifn795x-byteswap.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/drivers/crypto/hifn_795x.c
-+++ b/drivers/crypto/hifn_795x.c
-@@ -682,12 +682,12 @@ static inline u32 hifn_read_1(struct hif
-
- static inline void hifn_write_0(struct hifn_device *dev, u32 reg, u32 val)
- {
-- writel((__force u32)cpu_to_le32(val), dev->bar[0] + reg);
-+ writel(val, dev->bar[0] + reg);
- }
-
- static inline void hifn_write_1(struct hifn_device *dev, u32 reg, u32 val)
- {
-- writel((__force u32)cpu_to_le32(val), dev->bar[1] + reg);
-+ writel(val, dev->bar[1] + reg);
- }
-
- static void hifn_wait_puc(struct hifn_device *dev)