Browse Source

mtd: maps: pxa2xx-flash: show parent device in sysfs

Fix a bug where mtd parent device symlinks aren't shown in sysfs.

While at it, make use of the default owner value set by mtdcore.

Signed-off-by: Frans Klaver <fransklaver@gmail.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Frans Klaver 10 years ago
parent
commit
2451581f94
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/mtd/maps/pxa2xx-flash.c

+ 1 - 1
drivers/mtd/maps/pxa2xx-flash.c

@@ -93,7 +93,7 @@ static int pxa2xx_flash_probe(struct platform_device *pdev)
 			iounmap(info->map.cached);
 			iounmap(info->map.cached);
 		return -EIO;
 		return -EIO;
 	}
 	}
-	info->mtd->owner = THIS_MODULE;
+	info->mtd->dev.parent = &pdev->dev;
 
 
 	mtd_device_parse_register(info->mtd, probes, NULL, flash->parts,
 	mtd_device_parse_register(info->mtd, probes, NULL, flash->parts,
 				  flash->nr_parts);
 				  flash->nr_parts);