diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-02-12 12:52:12 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-02-12 12:52:12 +0000 |
commit | faae4235c427e762fecf3d6899088dd3e73cb6e1 (patch) | |
tree | 2f62b5e3606c58c164c58940dcd568cf60b1a245 /target/linux/ramips/files/arch/mips/ralink/rt288x/mach-wli-tx4-ag300n.c | |
parent | 3502e2b93f42ef64223282d6ef07a15b0f684f35 (diff) | |
download | mtk-20170518-faae4235c427e762fecf3d6899088dd3e73cb6e1.zip mtk-20170518-faae4235c427e762fecf3d6899088dd3e73cb6e1.tar.gz mtk-20170518-faae4235c427e762fecf3d6899088dd3e73cb6e1.tar.bz2 |
ramips: rt288x: remove per-board physmap_flash_data instances
SVN-Revision: 30474
Diffstat (limited to 'target/linux/ramips/files/arch/mips/ralink/rt288x/mach-wli-tx4-ag300n.c')
-rw-r--r-- | target/linux/ramips/files/arch/mips/ralink/rt288x/mach-wli-tx4-ag300n.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/target/linux/ramips/files/arch/mips/ralink/rt288x/mach-wli-tx4-ag300n.c b/target/linux/ramips/files/arch/mips/ralink/rt288x/mach-wli-tx4-ag300n.c index a9f0de4..9b310d0 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt288x/mach-wli-tx4-ag300n.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt288x/mach-wli-tx4-ag300n.c @@ -76,11 +76,6 @@ static struct mtd_partition wli_tx4_ag300n_partitions[] = { }, }; -static struct physmap_flash_data wli_tx4_ag300n_flash_data = { - .nr_parts = ARRAY_SIZE(wli_tx4_ag300n_partitions), - .parts = wli_tx4_ag300n_partitions, -}; - static struct gpio_led wli_tx4_ag300n_leds_gpio[] __initdata = { { .name = "buffalo:blue:power", @@ -136,7 +131,10 @@ static void __init wli_tx4_ag300n_init(void) ARRAY_SIZE(wli_tx4_ag300n_gpio_buttons), wli_tx4_ag300n_gpio_buttons); - rt288x_register_flash(0, &wli_tx4_ag300n_flash_data); + rt288x_flash0_data.nr_parts = ARRAY_SIZE(wli_tx4_ag300n_partitions); + rt288x_flash0_data.parts = wli_tx4_ag300n_partitions; + rt288x_register_flash(0); + rt288x_register_wifi(); rt288x_register_wdt(); |