diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2008-11-17 17:42:35 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2008-11-17 17:42:35 +0000 |
commit | 22a7b1b3d384203a6100b7773f3565d3139a7b69 (patch) | |
tree | fcd0d3ef4eee05cf4db5f18457913fbe2d77a22b /target/linux/ar71xx/files/arch/mips | |
parent | 722c78cd1e5df62e39b0db62166c6ed089dc7145 (diff) | |
download | mtk-20170518-22a7b1b3d384203a6100b7773f3565d3139a7b69.zip mtk-20170518-22a7b1b3d384203a6100b7773f3565d3139a7b69.tar.gz mtk-20170518-22a7b1b3d384203a6100b7773f3565d3139a7b69.tar.bz2 |
use MyLoader partition parser on the WP543 board
SVN-Revision: 13265
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c index ef2ef05..c1fe33e 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c @@ -31,39 +31,12 @@ #define WP543_BUTTONS_POLL_INTERVAL 20 -#ifdef CONFIG_MTD_PARTITIONS -static struct mtd_partition wp543_partitions[] = { - { - .name = "myloader", - .offset = 0, - .size = 0x20000, - .mask_flags = MTD_WRITEABLE, - } , { - .name = "kernel", - .offset = 0x30000, - .size = 0xd0000, - } , { - .name = "rootfs", - .offset = 0x100000, - .size = 0x100000, - } -}; -#endif /* CONFIG_MTD_PARTITIONS */ - -static struct flash_platform_data wp543_flash_data = { -#ifdef CONFIG_MTD_PARTITIONS - .parts = wp543_partitions, - .nr_parts = ARRAY_SIZE(wp543_partitions), -#endif -}; - static struct spi_board_info wp543_spi_info[] = { { .bus_num = 0, .chip_select = 0, .max_speed_hz = 25000000, .modalias = "m25p80", - .platform_data = &wp543_flash_data, } }; |