diff options
author | Baruch Siach <baruch@tkos.co.il> | 2010-05-31 08:49:40 +0300 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2010-07-26 14:17:53 +0200 |
commit | cce02464dd4733e8173d01a9a7a3ff5491c8546b (patch) | |
tree | 01e3c2b87ba9a272cef82466e1377ccc891dc159 /arch/arm/plat-mxc/include/mach | |
parent | 5ea32021c173c0c97482a1342a9069733032b647 (diff) | |
download | blackbird-op-linux-cce02464dd4733e8173d01a9a7a3ff5491c8546b.tar.gz blackbird-op-linux-cce02464dd4733e8173d01a9a7a3ff5491c8546b.zip |
mxc_nand: add support for platform defined partitions
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc/include/mach')
-rw-r--r-- | arch/arm/plat-mxc/include/mach/mxc_nand.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/plat-mxc/include/mach/mxc_nand.h b/arch/arm/plat-mxc/include/mach/mxc_nand.h index 5d2d21d414e0..2d74748c5db7 100644 --- a/arch/arm/plat-mxc/include/mach/mxc_nand.h +++ b/arch/arm/plat-mxc/include/mach/mxc_nand.h @@ -20,9 +20,13 @@ #ifndef __ASM_ARCH_NAND_H #define __ASM_ARCH_NAND_H +#include <linux/mtd/partitions.h> + struct mxc_nand_platform_data { int width; /* data bus width in bytes */ int hw_ecc:1; /* 0 if supress hardware ECC */ int flash_bbt:1; /* set to 1 to use a flash based bbt */ + struct mtd_partition *parts; /* partition table */ + int nr_parts; /* size of parts */ }; #endif /* __ASM_ARCH_NAND_H */ |