diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-07-18 17:16:36 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-07-18 17:16:36 +0000 |
commit | b3fae870093c1ca8d1c810251645f04e6b5a0db7 (patch) | |
tree | 42ce62e1cffbf61313363a5f1e43ed6d049ae99c /target/linux/adm5120-2.6/files/include | |
parent | f59b6f608993a86df80078e1f73d3917409a6f74 (diff) | |
download | upstream-b3fae870093c1ca8d1c810251645f04e6b5a0db7.tar.gz upstream-b3fae870093c1ca8d1c810251645f04e6b5a0db7.tar.bz2 upstream-b3fae870093c1ca8d1c810251645f04e6b5a0db7.zip |
Convert the nand driver to a platform_device, should only allow routerboards to use it
SVN-Revision: 8045
Diffstat (limited to 'target/linux/adm5120-2.6/files/include')
-rw-r--r-- | target/linux/adm5120-2.6/files/include/asm-mips/mach-adm5120/adm5120_platform.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/target/linux/adm5120-2.6/files/include/asm-mips/mach-adm5120/adm5120_platform.h b/target/linux/adm5120-2.6/files/include/asm-mips/mach-adm5120/adm5120_platform.h index b9822983c7..e63611912a 100644 --- a/target/linux/adm5120-2.6/files/include/asm-mips/mach-adm5120/adm5120_platform.h +++ b/target/linux/adm5120-2.6/files/include/asm-mips/mach-adm5120/adm5120_platform.h @@ -32,8 +32,14 @@ struct adm5120_flash_platform_data { void (*set_vpp)(struct map_info *, int); void (*switch_bank)(unsigned); +#ifdef CONFIG_MTD_PARTITIONS unsigned int nr_parts; struct mtd_partition *parts; +#endif +}; + +struct adm5120_nand_platform_data { + /* TODO : not yet implemented */ }; struct adm5120_switch_platform_data { @@ -54,11 +60,13 @@ struct adm5120_pci_platform_data { extern struct adm5120_flash_platform_data adm5120_flash0_data; extern struct adm5120_flash_platform_data adm5120_flash1_data; +extern struct adm5120_nand_platform_data adm5120_nand_data; extern struct adm5120_pci_platform_data adm5120_pci_data; extern struct adm5120_switch_platform_data adm5120_switch_data; extern struct platform_device adm5120_flash0_device; extern struct platform_device adm5120_flash1_device; +extern struct platform_device adm5120_nand_device; extern struct platform_device adm5120_usbc_device; extern struct platform_device adm5120_pci_device; extern struct platform_device adm5120_switch_device; |