diff options
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mtd/nand/at91_nand.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/mtd/nand/at91_nand.c b/drivers/mtd/nand/at91_nand.c index b2a5672df6e0..c9fb2acf4056 100644 --- a/drivers/mtd/nand/at91_nand.c +++ b/drivers/mtd/nand/at91_nand.c | |||
| @@ -156,14 +156,14 @@ static int __init at91_nand_probe(struct platform_device *pdev) | |||
| 156 | } | 156 | } |
| 157 | 157 | ||
| 158 | #ifdef CONFIG_MTD_PARTITIONS | 158 | #ifdef CONFIG_MTD_PARTITIONS |
| 159 | if (host->board->partition_info) | ||
| 160 | partitions = host->board->partition_info(mtd->size, &num_partitions); | ||
| 161 | #ifdef CONFIG_MTD_CMDLINE_PARTS | 159 | #ifdef CONFIG_MTD_CMDLINE_PARTS |
| 162 | else { | 160 | mtd->name = "at91_nand"; |
| 163 | mtd->name = "at91_nand"; | 161 | num_partitions = parse_mtd_partitions(mtd, part_probes, |
| 164 | num_partitions = parse_mtd_partitions(mtd, part_probes, &partitions, 0); | 162 | &partitions, 0); |
| 165 | } | ||
| 166 | #endif | 163 | #endif |
| 164 | if (num_partitions <= 0 && host->board->partition_info) | ||
| 165 | partitions = host->board->partition_info(mtd->size, | ||
| 166 | &num_partitions); | ||
| 167 | 167 | ||
| 168 | if ((!partitions) || (num_partitions == 0)) { | 168 | if ((!partitions) || (num_partitions == 0)) { |
| 169 | printk(KERN_ERR "at91_nand: No parititions defined, or unsupported device.\n"); | 169 | printk(KERN_ERR "at91_nand: No parititions defined, or unsupported device.\n"); |
