X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=package%2Facx-mac80211%2Fpatches%2F003-endianness_fixes.patch;h=f1d8da5b484b1ad8bb7c9a93a069851fdcf17b5f;hb=aa9f9d3ce349a46f65bea5fad969d43a0ecb69f7;hp=5ced16479953153f33181275cd86f5b6ab06e8e9;hpb=866696c182185ed17346d2d59e2c18020f729224;p=openwrt-10.03%2F.git diff --git a/package/acx-mac80211/patches/003-endianness_fixes.patch b/package/acx-mac80211/patches/003-endianness_fixes.patch index 5ced16479..f1d8da5b4 100644 --- a/package/acx-mac80211/patches/003-endianness_fixes.patch +++ b/package/acx-mac80211/patches/003-endianness_fixes.patch @@ -107,3 +107,15 @@ "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 +