diff options
author | Matteo Croce <matteo@openwrt.org> | 2007-09-23 21:07:53 +0000 |
---|---|---|
committer | Matteo Croce <matteo@openwrt.org> | 2007-09-23 21:07:53 +0000 |
commit | 9861c1db3206aa178821d02f9796da9b8ca44fd6 (patch) | |
tree | ee87b09d22beac8971137931efb452e4edd68964 /package/acx-mac80211/patches/003-endianness_fixes.patch | |
parent | 34e8faefa105ba0a44c0e067720e039e3dce8535 (diff) | |
download | upstream-9861c1db3206aa178821d02f9796da9b8ca44fd6.tar.gz upstream-9861c1db3206aa178821d02f9796da9b8ca44fd6.tar.bz2 upstream-9861c1db3206aa178821d02f9796da9b8ca44fd6.zip |
update acx-mac80211
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9001 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/acx-mac80211/patches/003-endianness_fixes.patch')
-rw-r--r-- | package/acx-mac80211/patches/003-endianness_fixes.patch | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/package/acx-mac80211/patches/003-endianness_fixes.patch b/package/acx-mac80211/patches/003-endianness_fixes.patch index f1d8da5b48..5ced164799 100644 --- a/package/acx-mac80211/patches/003-endianness_fixes.patch +++ b/package/acx-mac80211/patches/003-endianness_fixes.patch @@ -107,15 +107,3 @@ "waiting for cards to probe...\n"); res = pci_register_driver(&acxpci_drv_id); -diff -ruN acx-mac80211-20070610-old/wlan_hdr.h acx-mac80211-20070610-new/wlan_hdr.h ---- acx-mac80211-20070610-old/wlan_hdr.h 2007-06-10 20:23:27.000000000 +0200 -+++ acx-mac80211-20070610-new/wlan_hdr.h 2007-08-30 18:56:23.000000000 +0200 -@@ -125,7 +125,7 @@ - #define IEEE16(a,n) a = n, a##i = n, - #else - #ifdef __BIG_ENDIAN -- #define IEEE16(a,n) a = n a##i = ((n&0xff)*256 + ((n&0xff00/256)), -+ #define IEEE16(a,n) a = n, a##i = ((n&0xff)*256 + (n&0xff00)/256), - #endif - #endif - |