diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-05-02 10:38:32 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-05-02 10:38:32 +0000 |
commit | 7ce584788b99d96219b45596703cbfcf9791ff10 (patch) | |
tree | f4d00d51e1edbdac20b03376d7fb1999e7e3125a | |
parent | 34af4fbd1eadd5e6690c7741fa335b563f9adaf3 (diff) | |
download | upstream-7ce584788b99d96219b45596703cbfcf9791ff10.tar.gz upstream-7ce584788b99d96219b45596703cbfcf9791ff10.tar.bz2 upstream-7ce584788b99d96219b45596703cbfcf9791ff10.zip |
Fix ARV4518PW wifi issue. AA/12.09-rc2.
This patch corrects an issue with the wifi for the ARV4518PW in Attitude Adjustment that involves the PCI bus configuration in this board. The bootlog shows: ath5k: phy0: failed to warm reset the MAC Chip.
Commenting this line forces the board definition to be configured with the default PCI_GNT1 | PCI_REQ1 defined in line 138.
The wifi and the usb have been deeply tested and they worked without problems. Maybe would be a good idea to make stress tests.
Once applied this ticket should be closed:
https://dev.openwrt.org/ticket/11704
Signed-off-by: José Vázquez Fernández <ppvazquezfer@gmail.com>
Signed-off-by: Daniel González <dgcbueu@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/branches/attitude_adjustment@36510 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/lantiq/files/arch/mips/lantiq/xway/mach-arv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target/linux/lantiq/files/arch/mips/lantiq/xway/mach-arv.c b/target/linux/lantiq/files/arch/mips/lantiq/xway/mach-arv.c index 6857e993d2..295c661800 100644 --- a/target/linux/lantiq/files/arch/mips/lantiq/xway/mach-arv.c +++ b/target/linux/lantiq/files/arch/mips/lantiq/xway/mach-arv.c @@ -529,7 +529,6 @@ arv4518pw_init(void) ltq_register_gpio_keys_polled(-1, LTQ_KEYS_POLL_INTERVAL, ARRAY_SIZE(arv4518pw_gpio_keys), arv4518pw_gpio_keys); arv_load_nor(0x400000); - ltq_pci_data.gpio = PCI_GNT2 | PCI_REQ2; ltq_register_pci(<q_pci_data); xway_register_dwc(ARV4518PW_USB); arv_register_ethernet(ARV4518PW_MAC_ADDR); |