summaryrefslogtreecommitdiff
path: root/package/acx-mac80211
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2011-06-02 14:37:56 +0000
committerFlorian Fainelli <florian@openwrt.org>2011-06-02 14:37:56 +0000
commit7d8d47d29e5d001bb43c6a7c0b0fecc4ccabddb2 (patch)
tree0257753c3ccbd08c95204b4b59b650c9cd0a78b4 /package/acx-mac80211
parent0de25d1263319b007a989e850515b21591278056 (diff)
downloadmtk-20170518-7d8d47d29e5d001bb43c6a7c0b0fecc4ccabddb2.zip
mtk-20170518-7d8d47d29e5d001bb43c6a7c0b0fecc4ccabddb2.tar.gz
mtk-20170518-7d8d47d29e5d001bb43c6a7c0b0fecc4ccabddb2.tar.bz2
acx-mac80211: add io endianness patch
Signed-off-by: Alexey Torkhov <atorkhov@gmail.com> SVN-Revision: 27095
Diffstat (limited to 'package/acx-mac80211')
-rw-r--r--package/acx-mac80211/patches/010-io-endianness.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/package/acx-mac80211/patches/010-io-endianness.patch b/package/acx-mac80211/patches/010-io-endianness.patch
new file mode 100644
index 0000000..0515b1f
--- /dev/null
+++ b/package/acx-mac80211/patches/010-io-endianness.patch
@@ -0,0 +1,19 @@
+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)
+ {