aboutsummaryrefslogtreecommitdiffstats
path: root/package/acx-mac80211
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@openwrt.org>2011-06-04 09:33:02 +0000
committerHauke Mehrtens <hauke@openwrt.org>2011-06-04 09:33:02 +0000
commitd7d2280fd79442cae09e6e76164f0a0b41529536 (patch)
tree6a542699766359e7c571ca49dd6822e8393cede8 /package/acx-mac80211
parent8dc323870c81628ca4a9c5fb31d8b4a867468cbe (diff)
downloadupstream-d7d2280fd79442cae09e6e76164f0a0b41529536.tar.gz
upstream-d7d2280fd79442cae09e6e76164f0a0b41529536.tar.bz2
upstream-d7d2280fd79442cae09e6e76164f0a0b41529536.zip
acx-mac80211: remove patch
This patch is already incorporated into the original source code. closes #9499 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27100 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/acx-mac80211')
-rw-r--r--package/acx-mac80211/patches/010-io-endianness.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/package/acx-mac80211/patches/010-io-endianness.patch b/package/acx-mac80211/patches/010-io-endianness.patch
deleted file mode 100644
index 0515b1fbae..0000000000
--- a/package/acx-mac80211/patches/010-io-endianness.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/pci.c b/pci.c
-index 4f5c0a7..160f3e0 100644
---- a/pci.c
-+++ b/pci.c
-@@ -273,10 +273,10 @@ static void acxpci_log_txbuffer(acx_device_t * adev)
- */
-
- /* OS I/O routines *always* be endianness-clean but having them doesn't hurt */
--#define acx_readl(v) le32_to_cpu(readl((v)))
--#define acx_readw(v) le16_to_cpu(readw((v)))
--#define acx_writew(v,r) writew(le16_to_cpu((v)), r)
--#define acx_writel(v,r) writel(le32_to_cpu((v)), r)
-+#define acx_readl(v) readl((v))
-+#define acx_readw(v) readw((v))
-+#define acx_writew(v,r) writew((v), r)
-+#define acx_writel(v,r) writel((v), r)
-
- INLINE_IO u32 read_reg32(acx_device_t * adev, unsigned int offset)
- {