diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-06-01 19:55:42 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-06-01 19:55:42 -0400 |
commit | f5e7e844a571124ffc117d4696787d6afc4fc5ae (patch) | |
tree | 26bb17dc94e9536da540c187b00cedb0c1b24664 /arch/arm/mach-omap1 | |
parent | 48445159e9ecb44a96a4de06c6ae7c54eb43ba5b (diff) | |
parent | 4a43faf54e9173b6acce37cf7f053fc9515a2cdf (diff) |
Merge tag 'for-linus-3.5-20120601' of git://git.infradead.org/linux-mtd
Pull mtd update from David Woodhouse:
- More robust parsing especially of xattr data in JFFS2
- Updates to mxc_nand and gpmi drivers to support new boards and device tree
- Improve consistency of information about ECC strength in NAND devices
- Clean up partition handling of plat_nand
- Support NAND drivers without dedicated access to OOB area
- BCH hardware ECC support for OMAP
- Other fixes and cleanups, and a few new device IDs
Fixed trivial conflict in drivers/mtd/nand/gpmi-nand/gpmi-nand.c due to
added include files next to each other.
* tag 'for-linus-3.5-20120601' of git://git.infradead.org/linux-mtd: (75 commits)
mtd: mxc_nand: move ecc strengh setup before nand_scan_tail
mtd: block2mtd: fix recursive call of mtd_writev
mtd: gpmi-nand: define ecc.strength
mtd: of_parts: fix breakage in Kconfig
mtd: nand: fix scan_read_raw_oob
mtd: docg3 fix in-middle of blocks reads
mtd: cfi_cmdset_0002: Slight cleanup of fixup messages
mtd: add fixup for S29NS512P NOR flash.
jffs2: allow to complete xattr integrity check on first GC scan
jffs2: allow to discriminate between recoverable and non-recoverable errors
mtd: nand: omap: add support for hardware BCH ecc
ARM: OMAP3: gpmc: add BCH ecc api and modes
mtd: nand: check the return code of 'read_oob/read_oob_raw'
mtd: nand: remove 'sndcmd' parameter of 'read_oob/read_oob_raw'
mtd: m25p80: Add support for Winbond W25Q80BW
jffs2: get rid of jffs2_sync_super
jffs2: remove unnecessary GC pass on sync
jffs2: remove unnecessary GC pass on umount
jffs2: remove lock_super
mtd: gpmi: add gpmi support for mx6q
...
Diffstat (limited to 'arch/arm/mach-omap1')
-rw-r--r-- | arch/arm/mach-omap1/board-fsample.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-omap1/board-h2.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-omap1/board-h3.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-omap1/board-perseus2.c | 3 |
4 files changed, 0 insertions, 12 deletions
diff --git a/arch/arm/mach-omap1/board-fsample.c b/arch/arm/mach-omap1/board-fsample.c index c7364fdbda05..6872f3fd400f 100644 --- a/arch/arm/mach-omap1/board-fsample.c +++ b/arch/arm/mach-omap1/board-fsample.c | |||
@@ -192,14 +192,11 @@ static int nand_dev_ready(struct mtd_info *mtd) | |||
192 | return gpio_get_value(FSAMPLE_NAND_RB_GPIO_PIN); | 192 | return gpio_get_value(FSAMPLE_NAND_RB_GPIO_PIN); |
193 | } | 193 | } |
194 | 194 | ||
195 | static const char *part_probes[] = { "cmdlinepart", NULL }; | ||
196 | |||
197 | static struct platform_nand_data nand_data = { | 195 | static struct platform_nand_data nand_data = { |
198 | .chip = { | 196 | .chip = { |
199 | .nr_chips = 1, | 197 | .nr_chips = 1, |
200 | .chip_offset = 0, | 198 | .chip_offset = 0, |
201 | .options = NAND_SAMSUNG_LP_OPTIONS, | 199 | .options = NAND_SAMSUNG_LP_OPTIONS, |
202 | .part_probe_types = part_probes, | ||
203 | }, | 200 | }, |
204 | .ctrl = { | 201 | .ctrl = { |
205 | .cmd_ctrl = omap1_nand_cmd_ctl, | 202 | .cmd_ctrl = omap1_nand_cmd_ctl, |
diff --git a/arch/arm/mach-omap1/board-h2.c b/arch/arm/mach-omap1/board-h2.c index 7e503686f7af..a28e989a63f4 100644 --- a/arch/arm/mach-omap1/board-h2.c +++ b/arch/arm/mach-omap1/board-h2.c | |||
@@ -186,8 +186,6 @@ static int h2_nand_dev_ready(struct mtd_info *mtd) | |||
186 | return gpio_get_value(H2_NAND_RB_GPIO_PIN); | 186 | return gpio_get_value(H2_NAND_RB_GPIO_PIN); |
187 | } | 187 | } |
188 | 188 | ||
189 | static const char *h2_part_probes[] = { "cmdlinepart", NULL }; | ||
190 | |||
191 | static struct platform_nand_data h2_nand_platdata = { | 189 | static struct platform_nand_data h2_nand_platdata = { |
192 | .chip = { | 190 | .chip = { |
193 | .nr_chips = 1, | 191 | .nr_chips = 1, |
@@ -195,7 +193,6 @@ static struct platform_nand_data h2_nand_platdata = { | |||
195 | .nr_partitions = ARRAY_SIZE(h2_nand_partitions), | 193 | .nr_partitions = ARRAY_SIZE(h2_nand_partitions), |
196 | .partitions = h2_nand_partitions, | 194 | .partitions = h2_nand_partitions, |
197 | .options = NAND_SAMSUNG_LP_OPTIONS, | 195 | .options = NAND_SAMSUNG_LP_OPTIONS, |
198 | .part_probe_types = h2_part_probes, | ||
199 | }, | 196 | }, |
200 | .ctrl = { | 197 | .ctrl = { |
201 | .cmd_ctrl = omap1_nand_cmd_ctl, | 198 | .cmd_ctrl = omap1_nand_cmd_ctl, |
diff --git a/arch/arm/mach-omap1/board-h3.c b/arch/arm/mach-omap1/board-h3.c index 9fb03f189d93..108a8640fc6f 100644 --- a/arch/arm/mach-omap1/board-h3.c +++ b/arch/arm/mach-omap1/board-h3.c | |||
@@ -188,8 +188,6 @@ static int nand_dev_ready(struct mtd_info *mtd) | |||
188 | return gpio_get_value(H3_NAND_RB_GPIO_PIN); | 188 | return gpio_get_value(H3_NAND_RB_GPIO_PIN); |
189 | } | 189 | } |
190 | 190 | ||
191 | static const char *part_probes[] = { "cmdlinepart", NULL }; | ||
192 | |||
193 | static struct platform_nand_data nand_platdata = { | 191 | static struct platform_nand_data nand_platdata = { |
194 | .chip = { | 192 | .chip = { |
195 | .nr_chips = 1, | 193 | .nr_chips = 1, |
@@ -197,7 +195,6 @@ static struct platform_nand_data nand_platdata = { | |||
197 | .nr_partitions = ARRAY_SIZE(nand_partitions), | 195 | .nr_partitions = ARRAY_SIZE(nand_partitions), |
198 | .partitions = nand_partitions, | 196 | .partitions = nand_partitions, |
199 | .options = NAND_SAMSUNG_LP_OPTIONS, | 197 | .options = NAND_SAMSUNG_LP_OPTIONS, |
200 | .part_probe_types = part_probes, | ||
201 | }, | 198 | }, |
202 | .ctrl = { | 199 | .ctrl = { |
203 | .cmd_ctrl = omap1_nand_cmd_ctl, | 200 | .cmd_ctrl = omap1_nand_cmd_ctl, |
diff --git a/arch/arm/mach-omap1/board-perseus2.c b/arch/arm/mach-omap1/board-perseus2.c index f2cb24387c22..703d55ecffe2 100644 --- a/arch/arm/mach-omap1/board-perseus2.c +++ b/arch/arm/mach-omap1/board-perseus2.c | |||
@@ -150,14 +150,11 @@ static int nand_dev_ready(struct mtd_info *mtd) | |||
150 | return gpio_get_value(P2_NAND_RB_GPIO_PIN); | 150 | return gpio_get_value(P2_NAND_RB_GPIO_PIN); |
151 | } | 151 | } |
152 | 152 | ||
153 | static const char *part_probes[] = { "cmdlinepart", NULL }; | ||
154 | |||
155 | static struct platform_nand_data nand_data = { | 153 | static struct platform_nand_data nand_data = { |
156 | .chip = { | 154 | .chip = { |
157 | .nr_chips = 1, | 155 | .nr_chips = 1, |
158 | .chip_offset = 0, | 156 | .chip_offset = 0, |
159 | .options = NAND_SAMSUNG_LP_OPTIONS, | 157 | .options = NAND_SAMSUNG_LP_OPTIONS, |
160 | .part_probe_types = part_probes, | ||
161 | }, | 158 | }, |
162 | .ctrl = { | 159 | .ctrl = { |
163 | .cmd_ctrl = omap1_nand_cmd_ctl, | 160 | .cmd_ctrl = omap1_nand_cmd_ctl, |