diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-28 18:32:24 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-28 18:32:24 +0000 |
commit | b10a5d4260b7695a601bcc6d1987c2d1e41c0a86 (patch) | |
tree | 0d169a1634a19cd69976697f5641cb01c6adf7eb /openwrt/target/linux/package/madwifi/patches | |
parent | 22a1832e50a0d9a43fd3388976994bd3d6cc13c1 (diff) |
update madwifi, see #385, 105-radiotap_endian_fix.patch is integrated upstream
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3528 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target/linux/package/madwifi/patches')
-rw-r--r-- | openwrt/target/linux/package/madwifi/patches/105-radiotap_endian_fix.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/openwrt/target/linux/package/madwifi/patches/105-radiotap_endian_fix.patch b/openwrt/target/linux/package/madwifi/patches/105-radiotap_endian_fix.patch deleted file mode 100644 index 0f4f749a1..000000000 --- a/openwrt/target/linux/package/madwifi/patches/105-radiotap_endian_fix.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Nur madwifi-ng-r1451-20060212/net80211/ieee80211_monitor.c madwifi-ng-r1451-20060212-patch/net80211/ieee80211_monitor.c ---- madwifi-ng-r1451-20060212/net80211/ieee80211_monitor.c 2006-02-01 15:07:11.000000000 -0500 -+++ madwifi-ng-r1451-20060212-patch/net80211/ieee80211_monitor.c 2006-02-21 22:17:35.000000000 -0500 -@@ -296,7 +296,7 @@ - sizeof(struct ath_tx_radiotap_header)); - memset(th, 0, sizeof(struct ath_tx_radiotap_header)); - th->wt_ihdr.it_version = 0; -- th->wt_ihdr.it_len = sizeof(struct ath_tx_radiotap_header); -+ th->wt_ihdr.it_len = cpu_to_le16(sizeof(struct ath_tx_radiotap_header)); - th->wt_ihdr.it_present = ATH_TX_RADIOTAP_PRESENT; - th->wt_flags = 0; - th->wt_rate = rate; -@@ -315,7 +315,7 @@ - sizeof(struct ath_rx_radiotap_header)); - memset(th, 0, sizeof(struct ath_rx_radiotap_header)); - th->wr_ihdr.it_version = 0; -- th->wr_ihdr.it_len = sizeof(struct ath_rx_radiotap_header); -+ th->wr_ihdr.it_len = cpu_to_le16(sizeof(struct ath_rx_radiotap_header)); - th->wr_ihdr.it_present = ATH_RX_RADIOTAP_PRESENT; - th->wr_flags = 0; - th->wr_rate = rate; |