diff options
author | Daniel Mack <zonque@gmail.com> | 2012-12-14 11:36:41 +0100 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2013-01-14 09:55:19 -0800 |
commit | ccf04c51004d0b973a688a91c879e2d91780d03c (patch) | |
tree | 62ab037faecba41ce9a36c1fa2e62de341ac1c44 /include/linux/platform_data/mtd-nand-omap2.h | |
parent | 2f98ca895198c1c6f5c9f418e1bbf84660d9ba4f (diff) | |
download | blackbird-op-linux-ccf04c51004d0b973a688a91c879e2d91780d03c.tar.gz blackbird-op-linux-ccf04c51004d0b973a688a91c879e2d91780d03c.zip |
mtd: omap-nand: pass device_node in platform data
Pass an optional device_node pointer in the platform data, which in turn
will be put into a mtd_part_parser_data. This way, code that sets up the
platform devices can pass along the node from DT so that the partitions
can be parsed.
For non-DT boards, this change has no effect.
Signed-off-by: Daniel Mack <zonque@gmail.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: Artem Bityutskiy <dedekind1@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'include/linux/platform_data/mtd-nand-omap2.h')
-rw-r--r-- | include/linux/platform_data/mtd-nand-omap2.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/platform_data/mtd-nand-omap2.h b/include/linux/platform_data/mtd-nand-omap2.h index 24d32ca34bef..6bf9ef43ddb1 100644 --- a/include/linux/platform_data/mtd-nand-omap2.h +++ b/include/linux/platform_data/mtd-nand-omap2.h @@ -60,6 +60,8 @@ struct omap_nand_platform_data { int devsize; enum omap_ecc ecc_opt; struct gpmc_nand_regs reg; -}; + /* for passing the partitions */ + struct device_node *of_node; +}; #endif |