diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-11-17 19:17:54 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2011-12-07 17:02:48 -0500 |
commit | 0b0db270b8695f0a0ca87f273a8214fd9f6773de (patch) | |
tree | befefcba605f46550e6232f80776b82524f44d31 | |
parent | 3ae400223121ffb7d5b6f8299b6d18059a8fd038 (diff) |
MIPS: ath79: Register the wireless MAC device on the AP121 board
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Cc: Imre Kaloz <kaloz@openwrt.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/3032/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/ath79/mach-ap121.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/mips/ath79/mach-ap121.c b/arch/mips/ath79/mach-ap121.c index 353af55fe94d..39ee82802e49 100644 --- a/arch/mips/ath79/mach-ap121.c +++ b/arch/mips/ath79/mach-ap121.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include "dev-leds-gpio.h" | 13 | #include "dev-leds-gpio.h" |
14 | #include "dev-spi.h" | 14 | #include "dev-spi.h" |
15 | #include "dev-usb.h" | 15 | #include "dev-usb.h" |
16 | #include "dev-ar913x-wmac.h" | ||
16 | 17 | ||
17 | #define AP121_GPIO_LED_WLAN 0 | 18 | #define AP121_GPIO_LED_WLAN 0 |
18 | #define AP121_GPIO_LED_USB 1 | 19 | #define AP121_GPIO_LED_USB 1 |
@@ -73,6 +74,8 @@ static struct ath79_spi_platform_data ap121_spi_data = { | |||
73 | 74 | ||
74 | static void __init ap121_setup(void) | 75 | static void __init ap121_setup(void) |
75 | { | 76 | { |
77 | u8 *cal_data = (u8 *) KSEG1ADDR(AP121_CAL_DATA_ADDR); | ||
78 | |||
76 | ath79_register_leds_gpio(-1, ARRAY_SIZE(ap121_leds_gpio), | 79 | ath79_register_leds_gpio(-1, ARRAY_SIZE(ap121_leds_gpio), |
77 | ap121_leds_gpio); | 80 | ap121_leds_gpio); |
78 | ath79_register_gpio_keys_polled(-1, AP121_KEYS_POLL_INTERVAL, | 81 | ath79_register_gpio_keys_polled(-1, AP121_KEYS_POLL_INTERVAL, |
@@ -82,6 +85,7 @@ static void __init ap121_setup(void) | |||
82 | ath79_register_spi(&ap121_spi_data, ap121_spi_info, | 85 | ath79_register_spi(&ap121_spi_data, ap121_spi_info, |
83 | ARRAY_SIZE(ap121_spi_info)); | 86 | ARRAY_SIZE(ap121_spi_info)); |
84 | ath79_register_usb(); | 87 | ath79_register_usb(); |
88 | ath79_register_wmac(cal_data); | ||
85 | } | 89 | } |
86 | 90 | ||
87 | MIPS_MACHINE(ATH79_MACH_AP121, "AP121", "Atheros AP121 reference board", | 91 | MIPS_MACHINE(ATH79_MACH_AP121, "AP121", "Atheros AP121 reference board", |