diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-06-28 00:01:11 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-06-28 00:01:11 +0000 |
commit | d437ce276ad0282696268f1013d33966a1fa6698 (patch) | |
tree | 4c7f41384a1df9995b5f781c0a002e4c2caa8f14 | |
parent | d2e88fa30c127723bf2827a1caf738c2cf0460f6 (diff) | |
download | upstream-d437ce276ad0282696268f1013d33966a1fa6698.tar.gz upstream-d437ce276ad0282696268f1013d33966a1fa6698.tar.bz2 upstream-d437ce276ad0282696268f1013d33966a1fa6698.zip |
clean up the madwifi SoC support patch - remove some breakage that went unnoticed because it only applies to kernelversions before 2.6.19
SVN-Revision: 7746
-rw-r--r-- | package/madwifi/patches/120-soc_fix.patch | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/package/madwifi/patches/120-soc_fix.patch b/package/madwifi/patches/120-soc_fix.patch index 067dbfbb1c..fd3a200799 100644 --- a/package/madwifi/patches/120-soc_fix.patch +++ b/package/madwifi/patches/120-soc_fix.patch @@ -43,26 +43,4 @@ Index: madwifi-ng-r2420-20070602/ath/if_ath_ahb.c return 0; } -@@ -439,7 +441,7 @@ - (AR5315_REV_MAJ_M | AR5315_REV_MIN_M)); - if (((devid & AR5315_REV_MAJ_M) == AR5315_REV_MAJ) || - ((devid & AR5315_REV_MAJ_M) == AR5317_REV_MAJ)) -- return init_ath_wmac(devid, 0, &config); -+ return init_ath_wmac(devid, 0); - } - - devid = (u_int16_t) ((sysRegRead(AR531X_REV) >>8) & -@@ -452,11 +454,11 @@ - ar5312BspEepromRead(2 * AR531X_RADIO_MASK_OFF, 2, - (char *) &radioMask); - if ((radioMask & AR531X_RADIO0_MASK) != 0) -- if ((ret = init_ath_wmac(devid, 0, &config)) !=0 ) -+ if ((ret = init_ath_wmac(devid, 0)) !=0 ) - return ret; - /* XXX: Fall through?! */ - case AR5212_AR2313_REV8: -- if ((ret = init_ath_wmac(devid, 1, &config)) != 0) -+ if ((ret = init_ath_wmac(devid, 1)) != 0) - return ret; - break; - default: + |