diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-01-31 04:09:54 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-01-31 04:09:54 +0000 |
commit | 02cabf59486ff526a71c760b7120e0ce5e7892b7 (patch) | |
tree | d7025986045fd65118b17b57a8aedd7b718e4d82 /package/madwifi/patches/320-no_kzalloc.patch | |
parent | e80d5f9686da8698ae2b8d961401ec76cedcce30 (diff) | |
download | mtk-20170518-02cabf59486ff526a71c760b7120e0ce5e7892b7.zip mtk-20170518-02cabf59486ff526a71c760b7120e0ce5e7892b7.tar.gz mtk-20170518-02cabf59486ff526a71c760b7120e0ce5e7892b7.tar.bz2 |
pull madwifi forward to the latest upstream version - should fix some dual radio issues; add preliminary 2.6.24 support patch (compiles, not run-time tested, thx SeG)
SVN-Revision: 10334
Diffstat (limited to 'package/madwifi/patches/320-no_kzalloc.patch')
-rw-r--r-- | package/madwifi/patches/320-no_kzalloc.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/package/madwifi/patches/320-no_kzalloc.patch b/package/madwifi/patches/320-no_kzalloc.patch deleted file mode 100644 index 4c9f986..0000000 --- a/package/madwifi/patches/320-no_kzalloc.patch +++ /dev/null @@ -1,32 +0,0 @@ -Index: madwifi-dfs-r3280/ath/if_ath.c -=================================================================== ---- madwifi-dfs-r3280.orig/ath/if_ath.c 2008-01-28 17:18:52.497966105 +0100 -+++ madwifi-dfs-r3280/ath/if_ath.c 2008-01-28 17:19:06.982791546 +0100 -@@ -526,7 +526,8 @@ - - /* Allocate space for dynamically determined maximum VAP count */ - sc->sc_bslot = -- kzalloc(ath_maxvaps * sizeof(struct ieee80211vap), GFP_KERNEL); -+ kmalloc(ath_maxvaps * sizeof(struct ieee80211vap), GFP_KERNEL); -+ memset(sc->sc_bslot, 0, ath_maxvaps * sizeof(struct ieee80211vap)); - - /* - * Cache line size is used to size and align various -Index: madwifi-dfs-r3280/ath/if_ath_radar.c -=================================================================== ---- madwifi-dfs-r3280.orig/ath/if_ath_radar.c 2008-01-28 17:14:16.411947654 +0100 -+++ madwifi-dfs-r3280/ath/if_ath_radar.c 2008-01-28 17:19:07.290809101 +0100 -@@ -1539,9 +1539,11 @@ - - ath_rp_clear(sc); - -- sc->sc_rp = (struct ath_rp *)kzalloc( -- sizeof(struct ath_rp) * -+ sc->sc_rp = (struct ath_rp *)kmalloc( -+ sizeof(struct ath_rp) * - ATH_RADAR_PULSE_NR, GFP_KERNEL); -+ memset(sc->sc_rp, 0, sizeof(struct ath_rp) * -+ ATH_RADAR_PULSE_NR); - - if (sc->sc_rp == NULL) - return; |