diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-10-03 17:25:07 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-10-03 17:25:07 +0000 |
commit | 94f96443f0534a51a98d3d930a728d35b57464f9 (patch) | |
tree | c0d6dbae9edacaa83581247c7f4c891a0ad0d689 | |
parent | 5d4bb942b49b62919e14a58907d3c123651485c8 (diff) | |
download | upstream-94f96443f0534a51a98d3d930a728d35b57464f9.tar.gz upstream-94f96443f0534a51a98d3d930a728d35b57464f9.tar.bz2 upstream-94f96443f0534a51a98d3d930a728d35b57464f9.zip |
fix linux 2.4 compile with latest ibss fixes (thx, sven-ola)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12841 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/madwifi/patches/375-atim_tsf_update.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/madwifi/patches/375-atim_tsf_update.patch b/package/madwifi/patches/375-atim_tsf_update.patch index 3800b90c1b..cd5eefabdd 100644 --- a/package/madwifi/patches/375-atim_tsf_update.patch +++ b/package/madwifi/patches/375-atim_tsf_update.patch @@ -37,7 +37,7 @@ + struct ath_hal *ah = sc->sc_ah; + int dev = sc->sc_ah->ah_macType; + unsigned int nbtt, atim; -+ bool is_5210 = false; ++ bool is_5210 = 0; + + /* + * check if the ATIM window is still correct: @@ -50,7 +50,7 @@ + case 5210: + nbtt = OS_REG_READ(ah, AR5K_TIMER0_5210); + atim = OS_REG_READ(ah, AR5K_TIMER3_5210); -+ is_5210 = true; ++ is_5210 = 1; + break; + case 5211: + case 5212: |