浏览代码

mtd: maps: sa1100-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.
Incidentally, it seems the owner field in the concatenated mtds is not
actually used, so this shouldn't make much of a difference anyway.

Signed-off-by: Frans Klaver <fransklaver@gmail.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Frans Klaver 10 年之前
父节点
当前提交
72169755cf
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/mtd/maps/sa1100-flash.c

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

@@ -117,7 +117,6 @@ static int sa1100_probe_subdev(struct sa_subdev_info *subdev, struct resource *r
 		ret = -ENXIO;
 		ret = -ENXIO;
 		goto err;
 		goto err;
 	}
 	}
-	subdev->mtd->owner = THIS_MODULE;
 
 
 	printk(KERN_INFO "SA1100 flash: CFI device at 0x%08lx, %uMiB, %d-bit\n",
 	printk(KERN_INFO "SA1100 flash: CFI device at 0x%08lx, %uMiB, %d-bit\n",
 		phys, (unsigned)(subdev->mtd->size >> 20),
 		phys, (unsigned)(subdev->mtd->size >> 20),
@@ -234,6 +233,7 @@ static struct sa_info *sa1100_setup_mtd(struct platform_device *pdev,
 		if (info->mtd == NULL)
 		if (info->mtd == NULL)
 			ret = -ENXIO;
 			ret = -ENXIO;
 	}
 	}
+	info->mtd->dev.parent = &pdev->dev;
 
 
 	if (ret == 0)
 	if (ret == 0)
 		return info;
 		return info;