diff options
author | Jesper Nilsson <jesper.nilsson@axis.com> | 2007-11-14 20:01:20 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-11-14 21:45:46 -0500 |
commit | 1b8be1d82dd3b1ef32b15923123afa03bfeeb116 (patch) | |
tree | 9d844775d6f06ce24f9faa4318856ebc73249f59 /arch/cris/arch-v32/drivers | |
parent | 77accbf505a073beecf32e60265697517e203bea (diff) |
CRIS: remove MTD_AMSTD and MTD_OBSOLETE_CHIPS take two
Remove MTD_AMDSTD and MTD_OBSOLETE_CHIPS from defconfig, Kconfig and code,
instead we'll use MTD_CFI or MTD_JEDECPROBE.
[akpm@linux-foundation.org: codingl-style cleanups]
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Cc: Mikael Starvik <starvik@axis.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/cris/arch-v32/drivers')
-rw-r--r-- | arch/cris/arch-v32/drivers/Kconfig | 2 | ||||
-rw-r--r-- | arch/cris/arch-v32/drivers/axisflashmap.c | 9 |
2 files changed, 4 insertions, 7 deletions
diff --git a/arch/cris/arch-v32/drivers/Kconfig b/arch/cris/arch-v32/drivers/Kconfig index cc6ba5423754..7f72d7c9e1ce 100644 --- a/arch/cris/arch-v32/drivers/Kconfig +++ b/arch/cris/arch-v32/drivers/Kconfig | |||
@@ -362,8 +362,6 @@ config ETRAX_AXISFLASHMAP | |||
362 | select MTD | 362 | select MTD |
363 | select MTD_CFI | 363 | select MTD_CFI |
364 | select MTD_CFI_AMDSTD | 364 | select MTD_CFI_AMDSTD |
365 | select MTD_OBSOLETE_CHIPS | ||
366 | select MTD_AMDSTD | ||
367 | select MTD_CHAR | 365 | select MTD_CHAR |
368 | select MTD_BLOCK | 366 | select MTD_BLOCK |
369 | select MTD_PARTITIONS | 367 | select MTD_PARTITIONS |
diff --git a/arch/cris/arch-v32/drivers/axisflashmap.c b/arch/cris/arch-v32/drivers/axisflashmap.c index 3ec12ea44e8e..c5ff95e18269 100644 --- a/arch/cris/arch-v32/drivers/axisflashmap.c +++ b/arch/cris/arch-v32/drivers/axisflashmap.c | |||
@@ -190,13 +190,12 @@ static struct mtd_info *probe_cs(struct map_info *map_cs) | |||
190 | "%s: Probing a 0x%08lx bytes large window at 0x%08lx.\n", | 190 | "%s: Probing a 0x%08lx bytes large window at 0x%08lx.\n", |
191 | map_cs->name, map_cs->size, map_cs->map_priv_1); | 191 | map_cs->name, map_cs->size, map_cs->map_priv_1); |
192 | 192 | ||
193 | #ifdef CONFIG_MTD_AMDSTD | ||
194 | mtd_cs = do_map_probe("amd_flash", map_cs); | ||
195 | #endif | ||
196 | #ifdef CONFIG_MTD_CFI | 193 | #ifdef CONFIG_MTD_CFI |
197 | if (!mtd_cs) { | ||
198 | mtd_cs = do_map_probe("cfi_probe", map_cs); | 194 | mtd_cs = do_map_probe("cfi_probe", map_cs); |
199 | } | 195 | #endif |
196 | #ifdef CONFIG_MTD_JEDECPROBE | ||
197 | if (!mtd_cs) | ||
198 | mtd_cs = do_map_probe("jedec_probe", map_cs); | ||
200 | #endif | 199 | #endif |
201 | 200 | ||
202 | return mtd_cs; | 201 | return mtd_cs; |