diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-09-06 16:27:37 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-09-06 16:27:37 +0000 |
commit | 56231056ea784f1cec6450f649b1adaed1f56366 (patch) | |
tree | 7b130d72d854cde2bcd3af8b11bd0f7be3dbff6a /target/linux/ixp4xx/patches/520-compex_mtd_microcode.patch | |
parent | e1184aaa1a7a5e5eeef8e072bf0ea98c291be22a (diff) | |
download | mtk-20170518-56231056ea784f1cec6450f649b1adaed1f56366.zip mtk-20170518-56231056ea784f1cec6450f649b1adaed1f56366.tar.gz mtk-20170518-56231056ea784f1cec6450f649b1adaed1f56366.tar.bz2 |
strip the kernel version suffix from target directories, except for brcm-2.4 (the -2.4 will be included in the board name here). CONFIG_LINUX_<ver>_<board> becomes CONFIG_TARGET_<board>, same for profiles.
SVN-Revision: 8653
Diffstat (limited to 'target/linux/ixp4xx/patches/520-compex_mtd_microcode.patch')
-rw-r--r-- | target/linux/ixp4xx/patches/520-compex_mtd_microcode.patch | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/target/linux/ixp4xx/patches/520-compex_mtd_microcode.patch b/target/linux/ixp4xx/patches/520-compex_mtd_microcode.patch new file mode 100644 index 0000000..9084223 --- /dev/null +++ b/target/linux/ixp4xx/patches/520-compex_mtd_microcode.patch @@ -0,0 +1,55 @@ +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 +--- linux-2.6.19.2/arch/arm/mach-ixp4xx/compex-setup.c 2007-04-09 20:51:57.000000000 +0200 ++++ linux-2.6.19.2-owrt/arch/arm/mach-ixp4xx/compex-setup.c 2007-04-09 21:48:22.000000000 +0200 +@@ -17,6 +17,7 @@ + #include <linux/serial.h> + #include <linux/tty.h> + #include <linux/serial_8250.h> ++#include <linux/mtd/mtd.h> + #include <linux/slab.h> + + #include <asm/types.h> +@@ -136,11 +137,34 @@ + .resource = &res_mac1, + }; + ++struct npe_ucode_platform_data compex_npe_ucode_data = { ++ .mtd_partition = "RedBoot", ++}; ++ ++static struct platform_device compex_npe_ucode = { ++ .name = "ixp4xx_npe_ucode", ++ .id = 0, ++ .dev.platform_data = &compex_npe_ucode_data, ++}; ++ + static struct platform_device *compex_devices[] __initdata = { + &compex_flash, + &compex_uart, + &mac0, + &mac1, ++ &compex_npe_ucode, ++}; ++ ++static void compex_flash_add(struct mtd_info *mtd) ++{ ++} ++ ++static void compex_flash_remove(struct mtd_info *mtd) { ++} ++ ++static struct mtd_notifier compex_flash_notifier = { ++ .add = compex_flash_add, ++ .remove = compex_flash_remove, + }; + + static void __init compex_init(void) +@@ -152,6 +176,8 @@ + IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1; + + platform_add_devices(compex_devices, ARRAY_SIZE(compex_devices)); ++ ++ register_mtd_user(&compex_flash_notifier); + } + + #ifdef CONFIG_ARCH_COMPEX |