diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2011-05-29 12:17:11 -0400 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@intel.com> | 2011-09-11 08:02:04 -0400 |
commit | abfc7d2b94e650c18965e62fe74e457b96b4865a (patch) | |
tree | 254677356f53a0c93c0b67fa35f2550b4c9e5384 /drivers/mtd | |
parent | d845c3eebc1efea59c74a63c028f36051a4d0d8f (diff) |
mtd: txx9ndfmc don't specify default parsing options
Since 'cmdline, NULL' is now a default for parse_mtd_partitions, don't specify
this in every driver, instead pass NULL to force parse_mtd_partitions
to use default.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/nand/txx9ndfmc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/nand/txx9ndfmc.c b/drivers/mtd/nand/txx9ndfmc.c index bfba4e39a6c5..91b05b9a9086 100644 --- a/drivers/mtd/nand/txx9ndfmc.c +++ b/drivers/mtd/nand/txx9ndfmc.c | |||
@@ -287,7 +287,6 @@ static int txx9ndfmc_nand_scan(struct mtd_info *mtd) | |||
287 | static int __init txx9ndfmc_probe(struct platform_device *dev) | 287 | static int __init txx9ndfmc_probe(struct platform_device *dev) |
288 | { | 288 | { |
289 | struct txx9ndfmc_platform_data *plat = dev->dev.platform_data; | 289 | struct txx9ndfmc_platform_data *plat = dev->dev.platform_data; |
290 | static const char *probes[] = { "cmdlinepart", NULL }; | ||
291 | int hold, spw; | 290 | int hold, spw; |
292 | int i; | 291 | int i; |
293 | struct txx9ndfmc_drvdata *drvdata; | 292 | struct txx9ndfmc_drvdata *drvdata; |
@@ -393,7 +392,7 @@ static int __init txx9ndfmc_probe(struct platform_device *dev) | |||
393 | } | 392 | } |
394 | mtd->name = txx9_priv->mtdname; | 393 | mtd->name = txx9_priv->mtdname; |
395 | 394 | ||
396 | nr_parts = parse_mtd_partitions(mtd, probes, | 395 | nr_parts = parse_mtd_partitions(mtd, NULL, |
397 | &drvdata->parts[i], 0); | 396 | &drvdata->parts[i], 0); |
398 | mtd_device_register(mtd, drvdata->parts[i], nr_parts); | 397 | mtd_device_register(mtd, drvdata->parts[i], nr_parts); |
399 | drvdata->mtds[i] = mtd; | 398 | drvdata->mtds[i] = mtd; |