1 diff -Nur linux-2.6.19.2/arch/arm/mach-ixp4xx/compex-setup.c linux-2.6.19.2-owrt/arch/arm/mach-ixp4xx/compex-setup.c
2 --- linux-2.6.19.2/arch/arm/mach-ixp4xx/compex-setup.c 2007-04-09 20:51:57.000000000 +0200
3 +++ linux-2.6.19.2-owrt/arch/arm/mach-ixp4xx/compex-setup.c 2007-04-09 21:48:22.000000000 +0200
5 #include <linux/serial.h>
7 #include <linux/serial_8250.h>
8 +#include <linux/mtd/mtd.h>
9 #include <linux/slab.h>
11 #include <asm/types.h>
13 .resource = &res_mac1,
16 +struct npe_ucode_platform_data compex_npe_ucode_data = {
17 + .mtd_partition = "RedBoot",
20 +static struct platform_device compex_npe_ucode = {
21 + .name = "ixp4xx_npe_ucode",
23 + .dev.platform_data = &compex_npe_ucode_data,
26 static struct platform_device *compex_devices[] __initdata = {
34 +static void compex_flash_add(struct mtd_info *mtd)
38 +static void compex_flash_remove(struct mtd_info *mtd) {
41 +static struct mtd_notifier compex_flash_notifier = {
42 + .add = compex_flash_add,
43 + .remove = compex_flash_remove,
46 static void __init compex_init(void)
48 IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1;
50 platform_add_devices(compex_devices, ARRAY_SIZE(compex_devices));
52 + register_mtd_user(&compex_flash_notifier);
55 #ifdef CONFIG_ARCH_COMPEX