From: juhosg Date: Sun, 15 Dec 2013 21:34:15 +0000 (+0000) Subject: ar71xx: refactor TL-WAx50RE setup code X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=5199172cad8d6a3b5f0095be31ef5148457da8c2 ar71xx: refactor TL-WAx50RE setup code This way it is a bit easier to add other TP-LINK devices based on the Atheros AP123 reference board with one LAN port. Based-on: http://patchwork.openwrt.org/patch/4506/ Signed-off-by: Martijn Zilverschoon Signed-off-by: Gabor Juhos git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39071 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wax50re.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wax50re.c index 2f82f48fbb..c3387b0055 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wax50re.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wax50re.c @@ -156,10 +156,6 @@ static void __init tl_ap123_setup(void) ath79_register_eth(0); ath79_register_wmac(ee, mac); - - ath79_register_gpio_keys_polled(-1, TL_WAX50RE_KEYS_POLL_INTERVAL, - ARRAY_SIZE(tl_wax50re_gpio_keys), - tl_wax50re_gpio_keys); } static void __init tl_wa750re_setup(void) @@ -167,6 +163,10 @@ static void __init tl_wa750re_setup(void) tl_ap123_setup(); ath79_register_leds_gpio(-1, ARRAY_SIZE(tl_wa750re_leds_gpio), tl_wa750re_leds_gpio); + + ath79_register_gpio_keys_polled(-1, TL_WAX50RE_KEYS_POLL_INTERVAL, + ARRAY_SIZE(tl_wax50re_gpio_keys), + tl_wax50re_gpio_keys); } MIPS_MACHINE(ATH79_MACH_TL_WA750RE, "TL-WA750RE", "TP-LINK TL-WA750RE", @@ -177,6 +177,10 @@ static void __init tl_wa850re_setup(void) tl_ap123_setup(); ath79_register_leds_gpio(-1, ARRAY_SIZE(tl_wa850re_leds_gpio), tl_wa850re_leds_gpio); + + ath79_register_gpio_keys_polled(-1, TL_WAX50RE_KEYS_POLL_INTERVAL, + ARRAY_SIZE(tl_wax50re_gpio_keys), + tl_wax50re_gpio_keys); } MIPS_MACHINE(ATH79_MACH_TL_WA850RE, "TL-WA850RE", "TP-LINK TL-WA850RE",