ar71xx: remove hardcoded MTD layout from planex files
authorGabor Juhos <juhosg@openwrt.org>
Tue, 24 Jan 2012 18:40:34 +0000 (18:40 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Tue, 24 Jan 2012 18:40:34 +0000 (18:40 +0000)
SVN-Revision: 29895

target/linux/ar71xx/files-2.6.39/arch/mips/ar71xx/mach-mzk-w04nu.c
target/linux/ar71xx/files-2.6.39/arch/mips/ar71xx/mach-mzk-w300nh.c
target/linux/ar71xx/files-3.2/arch/mips/ath79/mach-mzk-w04nu.c
target/linux/ar71xx/files-3.2/arch/mips/ath79/mach-mzk-w300nh.c

index dbb408cbb2820bdcfaa75e2e5485be004c2ef63d..b88edeec3fb9a36923aae83b69e471deec32e236 100644 (file)
@@ -8,9 +8,6 @@
  *  by the Free Software Foundation.
  */
 
-#include <linux/mtd/mtd.h>
-#include <linux/mtd/partitions.h>
-
 #include <asm/mach-ar71xx/ar71xx.h>
 
 #include "machtype.h"
 #define MZK_W04NU_KEYS_POLL_INTERVAL   20      /* msecs */
 #define MZK_W04NU_KEYS_DEBOUNCE_INTERVAL (3 * MZK_W04NU_KEYS_POLL_INTERVAL)
 
-#ifdef CONFIG_MTD_PARTITIONS
-static struct mtd_partition mzk_w04nu_partitions[] = {
-       {
-               .name           = "u-boot",
-               .offset         = 0,
-               .size           = 0x040000,
-               .mask_flags     = MTD_WRITEABLE,
-       }, {
-               .name           = "u-boot-env",
-               .offset         = 0x040000,
-               .size           = 0x010000,
-       }, {
-               .name           = "kernel",
-               .offset         = 0x050000,
-               .size           = 0x160000,
-       }, {
-               .name           = "rootfs",
-               .offset         = 0x1b0000,
-               .size           = 0x630000,
-       }, {
-               .name           = "art",
-               .offset         = 0x7e0000,
-               .size           = 0x020000,
-               .mask_flags     = MTD_WRITEABLE,
-       }, {
-               .name           = "firmware",
-               .offset         = 0x050000,
-               .size           = 0x790000,
-       }
-};
-#endif /* CONFIG_MTD_PARTITIONS */
-
-static struct flash_platform_data mzk_w04nu_flash_data = {
-#ifdef CONFIG_MTD_PARTITIONS
-       .parts          = mzk_w04nu_partitions,
-       .nr_parts       = ARRAY_SIZE(mzk_w04nu_partitions),
-#endif
-};
-
 static struct gpio_led mzk_w04nu_leds_gpio[] __initdata = {
        {
                .name           = "planex:green:status",
@@ -149,7 +107,7 @@ static void __init mzk_w04nu_setup(void)
        ar71xx_add_device_eth(0);
        ar71xx_add_device_eth(1);
 
-       ar71xx_add_device_m25p80(&mzk_w04nu_flash_data);
+       ar71xx_add_device_m25p80(NULL);
 
        ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(mzk_w04nu_leds_gpio),
                                        mzk_w04nu_leds_gpio);
index 98b3f009263c42f737e952072b47222c1ed29963..ca98c7c0413bddd32bc53d69019ae4daf59624f4 100644 (file)
@@ -9,9 +9,6 @@
  *  by the Free Software Foundation.
  */
 
-#include <linux/mtd/mtd.h>
-#include <linux/mtd/partitions.h>
-
 #include <asm/mach-ar71xx/ar71xx.h>
 
 #include "machtype.h"
 #define MZK_W300NH_KEYS_POLL_INTERVAL  20      /* msecs */
 #define MZK_W300NH_KEYS_DEBOUNCE_INTERVAL (3 * MZK_W300NH_KEYS_POLL_INTERVAL)
 
-#ifdef CONFIG_MTD_PARTITIONS
-static struct mtd_partition mzk_w300nh_partitions[] = {
-       {
-               .name           = "u-boot",
-               .offset         = 0,
-               .size           = 0x040000,
-               .mask_flags     = MTD_WRITEABLE,
-       }, {
-               .name           = "u-boot-env",
-               .offset         = 0x040000,
-               .size           = 0x010000,
-       }, {
-               .name           = "kernel",
-               .offset         = 0x050000,
-               .size           = 0x160000,
-       }, {
-               .name           = "rootfs",
-               .offset         = 0x1b0000,
-               .size           = 0x630000,
-       }, {
-               .name           = "art",
-               .offset         = 0x7e0000,
-               .size           = 0x020000,
-               .mask_flags     = MTD_WRITEABLE,
-       }, {
-               .name           = "firmware",
-               .offset         = 0x050000,
-               .size           = 0x790000,
-       }
-};
-#endif /* CONFIG_MTD_PARTITIONS */
-
-static struct flash_platform_data mzk_w300nh_flash_data = {
-#ifdef CONFIG_MTD_PARTITIONS
-       .parts          = mzk_w300nh_partitions,
-       .nr_parts       = ARRAY_SIZE(mzk_w300nh_partitions),
-#endif
-};
-
 static struct gpio_led mzk_w300nh_leds_gpio[] __initdata = {
        {
                .name           = "planex:green:status",
@@ -144,7 +102,7 @@ static void __init mzk_w300nh_setup(void)
        ar71xx_add_device_eth(0);
        ar71xx_add_device_eth(1);
 
-       ar71xx_add_device_m25p80(&mzk_w300nh_flash_data);
+       ar71xx_add_device_m25p80(NULL);
 
        ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(mzk_w300nh_leds_gpio),
                                        mzk_w300nh_leds_gpio);
index a50436678f2690500ba30b4215e8f09ae62cec57..c2460ce33c5b04fba08407318c7edd9fe58af50d 100644 (file)
@@ -8,9 +8,6 @@
  *  by the Free Software Foundation.
  */
 
-#include <linux/mtd/mtd.h>
-#include <linux/mtd/partitions.h>
-
 #include <asm/mach-ath79/ath79.h>
 
 #include "dev-eth.h"
 #define MZK_W04NU_KEYS_POLL_INTERVAL   20      /* msecs */
 #define MZK_W04NU_KEYS_DEBOUNCE_INTERVAL (3 * MZK_W04NU_KEYS_POLL_INTERVAL)
 
-static struct mtd_partition mzk_w04nu_partitions[] = {
-       {
-               .name           = "u-boot",
-               .offset         = 0,
-               .size           = 0x040000,
-               .mask_flags     = MTD_WRITEABLE,
-       }, {
-               .name           = "u-boot-env",
-               .offset         = 0x040000,
-               .size           = 0x010000,
-       }, {
-               .name           = "kernel",
-               .offset         = 0x050000,
-               .size           = 0x160000,
-       }, {
-               .name           = "rootfs",
-               .offset         = 0x1b0000,
-               .size           = 0x630000,
-       }, {
-               .name           = "art",
-               .offset         = 0x7e0000,
-               .size           = 0x020000,
-               .mask_flags     = MTD_WRITEABLE,
-       }, {
-               .name           = "firmware",
-               .offset         = 0x050000,
-               .size           = 0x790000,
-       }
-};
-
-static struct flash_platform_data mzk_w04nu_flash_data = {
-       .parts          = mzk_w04nu_partitions,
-       .nr_parts       = ARRAY_SIZE(mzk_w04nu_partitions),
-};
-
 static struct gpio_led mzk_w04nu_leds_gpio[] __initdata = {
        {
                .name           = "planex:green:status",
@@ -145,7 +107,7 @@ static void __init mzk_w04nu_setup(void)
        ath79_register_eth(0);
        ath79_register_eth(1);
 
-       ath79_register_m25p80(&mzk_w04nu_flash_data);
+       ath79_register_m25p80(NULL);
 
        ath79_register_leds_gpio(-1, ARRAY_SIZE(mzk_w04nu_leds_gpio),
                                 mzk_w04nu_leds_gpio);
index 4a6d06b926299011f9390a96c3553ba7e1f799eb..4ff19e884191af6c1a663bd7cf493f36d2d21936 100644 (file)
@@ -9,9 +9,6 @@
  *  by the Free Software Foundation.
  */
 
-#include <linux/mtd/mtd.h>
-#include <linux/mtd/partitions.h>
-
 #include <asm/mach-ath79/ath79.h>
 
 #include "dev-eth.h"
 #define MZK_W300NH_KEYS_POLL_INTERVAL  20      /* msecs */
 #define MZK_W300NH_KEYS_DEBOUNCE_INTERVAL (3 * MZK_W300NH_KEYS_POLL_INTERVAL)
 
-static struct mtd_partition mzk_w300nh_partitions[] = {
-       {
-               .name           = "u-boot",
-               .offset         = 0,
-               .size           = 0x040000,
-               .mask_flags     = MTD_WRITEABLE,
-       }, {
-               .name           = "u-boot-env",
-               .offset         = 0x040000,
-               .size           = 0x010000,
-       }, {
-               .name           = "kernel",
-               .offset         = 0x050000,
-               .size           = 0x160000,
-       }, {
-               .name           = "rootfs",
-               .offset         = 0x1b0000,
-               .size           = 0x630000,
-       }, {
-               .name           = "art",
-               .offset         = 0x7e0000,
-               .size           = 0x020000,
-               .mask_flags     = MTD_WRITEABLE,
-       }, {
-               .name           = "firmware",
-               .offset         = 0x050000,
-               .size           = 0x790000,
-       }
-};
-
-static struct flash_platform_data mzk_w300nh_flash_data = {
-       .parts          = mzk_w300nh_partitions,
-       .nr_parts       = ARRAY_SIZE(mzk_w300nh_partitions),
-};
-
 static struct gpio_led mzk_w300nh_leds_gpio[] __initdata = {
        {
                .name           = "planex:green:status",
@@ -140,7 +102,7 @@ static void __init mzk_w300nh_setup(void)
        ath79_register_eth(0);
        ath79_register_eth(1);
 
-       ath79_register_m25p80(&mzk_w300nh_flash_data);
+       ath79_register_m25p80(NULL);
 
        ath79_register_leds_gpio(-1, ARRAY_SIZE(mzk_w300nh_leds_gpio),
                                 mzk_w300nh_leds_gpio);