summaryrefslogtreecommitdiff
path: root/target/linux/ar71xx/patches-3.6/213-MIPS-ath79-fix-ar933x-wmac-reset.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-01-12 12:25:38 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-01-12 12:25:38 +0000
commiteb2188c0e229799d7fc619fbff66d70f8f5b76c6 (patch)
tree5f58304bf684bc84e183fd5fc7ad99bd94786a41 /target/linux/ar71xx/patches-3.6/213-MIPS-ath79-fix-ar933x-wmac-reset.patch
parentfe86bc937096e4b349c4394a71bc3b48daae45db (diff)
downloadmtk-20170518-eb2188c0e229799d7fc619fbff66d70f8f5b76c6.zip
mtk-20170518-eb2188c0e229799d7fc619fbff66d70f8f5b76c6.tar.gz
mtk-20170518-eb2188c0e229799d7fc619fbff66d70f8f5b76c6.tar.bz2
ar71xx: remove 3.6 support
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 35114
Diffstat (limited to 'target/linux/ar71xx/patches-3.6/213-MIPS-ath79-fix-ar933x-wmac-reset.patch')
-rw-r--r--target/linux/ar71xx/patches-3.6/213-MIPS-ath79-fix-ar933x-wmac-reset.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/ar71xx/patches-3.6/213-MIPS-ath79-fix-ar933x-wmac-reset.patch b/target/linux/ar71xx/patches-3.6/213-MIPS-ath79-fix-ar933x-wmac-reset.patch
deleted file mode 100644
index e0821a7..0000000
--- a/target/linux/ar71xx/patches-3.6/213-MIPS-ath79-fix-ar933x-wmac-reset.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/arch/mips/ath79/dev-wmac.c
-+++ b/arch/mips/ath79/dev-wmac.c
-@@ -62,10 +62,27 @@ static void __init ar913x_wmac_setup(voi
-
- static int ar933x_wmac_reset(void)
- {
-+ int retries = 20;
-+
- ath79_device_reset_set(AR933X_RESET_WMAC);
- ath79_device_reset_clear(AR933X_RESET_WMAC);
-
-- return 0;
-+ while (1) {
-+ u32 bootstrap;
-+
-+ bootstrap = ath79_reset_rr(AR933X_RESET_REG_BOOTSTRAP);
-+ if ((bootstrap & AR933X_BOOTSTRAP_EEPBUSY) == 0)
-+ return 0;
-+
-+ if (retries-- == 0)
-+ break;
-+
-+ udelay(10000);
-+ retries++;
-+ }
-+
-+ pr_err("ar933x: WMAC reset timed out");
-+ return -ETIMEDOUT;
- }
-
- static int ar933x_r1_get_wmac_revision(void)