diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-02-12 12:52:10 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-02-12 12:52:10 +0000 |
commit | 3502e2b93f42ef64223282d6ef07a15b0f684f35 (patch) | |
tree | f3a366d481f71c35a5054a9e9126edb9f9366129 /target/linux/ramips/files/arch/mips/ralink/rt305x/mach-wl351.c | |
parent | 143e861708e452da0d750b067bd35fb78686e78e (diff) | |
download | mtk-20170518-3502e2b93f42ef64223282d6ef07a15b0f684f35.zip mtk-20170518-3502e2b93f42ef64223282d6ef07a15b0f684f35.tar.gz mtk-20170518-3502e2b93f42ef64223282d6ef07a15b0f684f35.tar.bz2 |
ramips: rt305x: remove per-board physmap_flash_data instances
SVN-Revision: 30473
Diffstat (limited to 'target/linux/ramips/files/arch/mips/ralink/rt305x/mach-wl351.c')
-rw-r--r-- | target/linux/ramips/files/arch/mips/ralink/rt305x/mach-wl351.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-wl351.c b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-wl351.c index 9d227b6..8d37f8f 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-wl351.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-wl351.c @@ -104,12 +104,6 @@ static struct mtd_partition wl351_partitions[] = { } }; -static struct physmap_flash_data wl351_flash_data = { - .nr_parts = ARRAY_SIZE(wl351_partitions), - .parts = wl351_partitions, -}; - - static struct rtl8366_platform_data wl351_switch_data = { .gpio_sda = RT305X_GPIO_I2C_SD, .gpio_sck = RT305X_GPIO_I2C_SCLK, @@ -130,7 +124,11 @@ static void __init wl351_init(void) RT305X_GPIO_MODE_I2C | RT305X_GPIO_MODE_SPI | RT305X_GPIO_MODE_MDIO); - rt305x_register_flash(0, &wl351_flash_data); + + rt305x_flash0_data.nr_parts = ARRAY_SIZE(wl351_partitions); + rt305x_flash0_data.parts = wl351_partitions; + rt305x_register_flash(0); + ramips_register_gpio_leds(-1, ARRAY_SIZE(wl351_leds_gpio), wl351_leds_gpio); ramips_register_gpio_buttons(-1, WL351_KEYS_POLL_INTERVAL, |