Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 176927
b: refs/heads/master
c: 8ce110a
h: refs/heads/master
i:
  176925: bf85df4
  176923: 09a09f7
  176919: 755cdfe
  176911: 6f87015
  176895: 55d9bbb
v: v3
  • Loading branch information
H Hartley Sweeten authored and David Woodhouse committed Oct 20, 2009
1 parent ecbef00 commit f10b7e6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 24 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1cc523999e0acd0c21f83bf89b7a44b4ab6f7bd8
refs/heads/master: 8ce110ac19bc88b82e3feacfbb3a2ee08a07fe22
44 changes: 21 additions & 23 deletions trunk/drivers/mtd/maps/physmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,10 @@ static int physmap_flash_remove(struct platform_device *dev)
return 0;
platform_set_drvdata(dev, NULL);

if (info->cmtd == NULL)
return 0;

physmap_data = dev->dev.platform_data;

if (mtd_has_partitions()) {
if (info->cmtd) {
#ifdef CONFIG_MTD_PARTITIONS
if (info->nr_parts || physmap_data->nr_parts) {
del_mtd_partitions(info->cmtd);

Expand All @@ -58,14 +56,14 @@ static int physmap_flash_remove(struct platform_device *dev)
} else {
del_mtd_device(info->cmtd);
}
} else {
#else
del_mtd_device(info->cmtd);
}

#endif
#ifdef CONFIG_MTD_CONCAT
if (info->cmtd != info->mtd[0])
mtd_concat_destroy(info->cmtd);
if (info->cmtd != info->mtd[0])
mtd_concat_destroy(info->cmtd);
#endif
}

for (i = 0; i < MAX_RESOURCES; i++) {
if (info->mtd[i] != NULL)
Expand Down Expand Up @@ -170,22 +168,22 @@ static int physmap_flash_probe(struct platform_device *dev)
if (err)
goto err_out;

if (mtd_has_partitions()) {
err = parse_mtd_partitions(info->cmtd, part_probe_types,
&info->parts, 0);
if (err > 0) {
add_mtd_partitions(info->cmtd, info->parts, err);
info->nr_parts = err;
return 0;
}
#ifdef CONFIG_MTD_PARTITIONS
err = parse_mtd_partitions(info->cmtd, part_probe_types,
&info->parts, 0);
if (err > 0) {
add_mtd_partitions(info->cmtd, info->parts, err);
info->nr_parts = err;
return 0;
}

if (physmap_data->nr_parts) {
printk(KERN_NOTICE "Using physmap partition information\n");
add_mtd_partitions(info->cmtd, physmap_data->parts,
physmap_data->nr_parts);
return 0;
}
if (physmap_data->nr_parts) {
printk(KERN_NOTICE "Using physmap partition information\n");
add_mtd_partitions(info->cmtd, physmap_data->parts,
physmap_data->nr_parts);
return 0;
}
#endif

add_mtd_device(info->cmtd);
return 0;
Expand Down

0 comments on commit f10b7e6

Please sign in to comment.