| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | [PATCH 1/2] MIPS: ath79: fix AR933X WMAC reset code |
| From: | Gabor Juhos <juhosg@openwrt.org> |
| Date: | Wed, 14 Mar 2012 11:28:35 +0100 |
| Cc: | linux-mips@linux-mips.org, juhosg@openwrt.org, stable@vger.kernel.org |
| In-reply-to: | <1331720916-4015-1-git-send-email-juhosg@openwrt.org> |
| References: | <1331720916-4015-1-git-send-email-juhosg@openwrt.org> |
| Sender: | linux-mips-bounce@linux-mips.org |
The current code puts the built-in WMAC device of the
AR933X SoCs into reset instead of starting it. This
causes a hard lock on AR933X based boards when the
wireless driver tries to access the device.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Cc: stable@vger.kernel.org
arch/mips/ath79/dev-wmac.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/mips/ath79/dev-wmac.c b/arch/mips/ath79/dev-wmac.c
index e215070..9c717bf 100644
--- a/arch/mips/ath79/dev-wmac.c
+++ b/arch/mips/ath79/dev-wmac.c
@@ -58,8 +58,8 @@ static void __init ar913x_wmac_setup(void)
static int ar933x_wmac_reset(void)
{
- ath79_device_reset_clear(AR933X_RESET_WMAC);
ath79_device_reset_set(AR933X_RESET_WMAC);
+ ath79_device_reset_clear(AR933X_RESET_WMAC);
return 0;
}
--
1.7.2.1
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 2/2] MIPS: ath79: Use kmemdup rather than duplicating its implementation, Gabor Juhos |
|---|---|
| Next by Date: | [PATCH v5 0/7] MIPS: ath79: cleanup AR724X PCI support code, Gabor Juhos |
| Previous by Thread: | [PATCH 2/2] MIPS: ath79: Use kmemdup rather than duplicating its implementation, Gabor Juhos |
| Next by Thread: | [PATCH v5 0/7] MIPS: ath79: cleanup AR724X PCI support code, Gabor Juhos |
| Indexes: | [Date] [Thread] [Top] [All Lists] |