diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2011-06-02 10:00:30 -0400 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@intel.com> | 2011-09-11 08:02:08 -0400 |
commit | 0b118f06df94eb5a14a70c93e0fc739a67f66ae6 (patch) | |
tree | 5e4078b01dfa0c54bd7526fb6a18321d4922921b /drivers/mtd/nand/cmx270_nand.c | |
parent | 4d32de81382c5a0ee74b5ca5996f27111960a48d (diff) |
mtd: cmx270_nand.c: use mtd_device_parse_register
Replace custom invocations of parse_mtd_partitions and mtd_device_register
with common mtd_device_parse_register call. This would bring: standard
handling of all errors, fallback to default partitions, etc.
Artem: tweaked the patch
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd/nand/cmx270_nand.c')
-rw-r--r-- | drivers/mtd/nand/cmx270_nand.c | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/drivers/mtd/nand/cmx270_nand.c b/drivers/mtd/nand/cmx270_nand.c index f8f5b7c0daf5..31308e694bd3 100644 --- a/drivers/mtd/nand/cmx270_nand.c +++ b/drivers/mtd/nand/cmx270_nand.c | |||
@@ -149,9 +149,6 @@ static int cmx270_device_ready(struct mtd_info *mtd) | |||
149 | static int __init cmx270_init(void) | 149 | static int __init cmx270_init(void) |
150 | { | 150 | { |
151 | struct nand_chip *this; | 151 | struct nand_chip *this; |
152 | const char *part_type; | ||
153 | struct mtd_partition *mtd_parts; | ||
154 | int mtd_parts_nb = 0; | ||
155 | int ret; | 152 | int ret; |
156 | 153 | ||
157 | if (!(machine_is_armcore() && cpu_is_pxa27x())) | 154 | if (!(machine_is_armcore() && cpu_is_pxa27x())) |
@@ -220,22 +217,9 @@ static int __init cmx270_init(void) | |||
220 | goto err_scan; | 217 | goto err_scan; |
221 | } | 218 | } |
222 | 219 | ||
223 | mtd_parts_nb = parse_mtd_partitions(cmx270_nand_mtd, NULL, | ||
224 | &mtd_parts, 0); | ||
225 | if (mtd_parts_nb > 0) | ||
226 | part_type = "command line"; | ||
227 | else | ||
228 | mtd_parts_nb = 0; | ||
229 | |||
230 | if (!mtd_parts_nb) { | ||
231 | mtd_parts = partition_info; | ||
232 | mtd_parts_nb = NUM_PARTITIONS; | ||
233 | part_type = "static"; | ||
234 | } | ||
235 | |||
236 | /* Register the partitions */ | 220 | /* Register the partitions */ |
237 | pr_notice("Using %s partition definition\n", part_type); | 221 | ret = mtd_device_parse_register(cmx270_nand_mtd, NULL, 0, |
238 | ret = mtd_device_register(cmx270_nand_mtd, mtd_parts, mtd_parts_nb); | 222 | partition_info, NUM_PARTITIONS); |
239 | if (ret) | 223 | if (ret) |
240 | goto err_scan; | 224 | goto err_scan; |
241 | 225 | ||