aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/devices
diff options
context:
space:
mode:
authorFrans Klaver <fransklaver@gmail.com>2015-06-10 16:38:18 -0400
committerBrian Norris <computersforpeace@gmail.com>2015-10-13 12:21:14 -0400
commit1560d2132ae95b36b25cc78811af8eaf9bbb2f8e (patch)
tree84562340fd79f5a27fdea7af018938ed287e7340 /drivers/mtd/devices
parenteb98198f23d0c6a77afe692b25e8ad634f0404c5 (diff)
mtd: devices: docg3: 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>
Diffstat (limited to 'drivers/mtd/devices')
-rw-r--r--drivers/mtd/devices/docg3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/devices/docg3.c b/drivers/mtd/devices/docg3.c
index 5e67b4acde78..f00d0dae917f 100644
--- a/drivers/mtd/devices/docg3.c
+++ b/drivers/mtd/devices/docg3.c
@@ -1843,7 +1843,6 @@ static int __init doc_set_driver_info(int chip_id, struct mtd_info *mtd)
1843 mtd->erasesize /= 2; 1843 mtd->erasesize /= 2;
1844 mtd->writebufsize = mtd->writesize = DOC_LAYOUT_PAGE_SIZE; 1844 mtd->writebufsize = mtd->writesize = DOC_LAYOUT_PAGE_SIZE;
1845 mtd->oobsize = DOC_LAYOUT_OOB_SIZE; 1845 mtd->oobsize = DOC_LAYOUT_OOB_SIZE;
1846 mtd->owner = THIS_MODULE;
1847 mtd->_erase = doc_erase; 1846 mtd->_erase = doc_erase;
1848 mtd->_read = doc_read; 1847 mtd->_read = doc_read;
1849 mtd->_write = doc_write; 1848 mtd->_write = doc_write;
@@ -1885,6 +1884,7 @@ doc_probe_device(struct docg3_cascade *cascade, int floor, struct device *dev)
1885 if (!mtd) 1884 if (!mtd)
1886 goto nomem2; 1885 goto nomem2;
1887 mtd->priv = docg3; 1886 mtd->priv = docg3;
1887 mtd->dev.parent = dev;
1888 bbt_nbpages = DIV_ROUND_UP(docg3->max_block + 1, 1888 bbt_nbpages = DIV_ROUND_UP(docg3->max_block + 1,
1889 8 * DOC_LAYOUT_PAGE_SIZE); 1889 8 * DOC_LAYOUT_PAGE_SIZE);
1890 docg3->bbt = kzalloc(bbt_nbpages * DOC_LAYOUT_PAGE_SIZE, GFP_KERNEL); 1890 docg3->bbt = kzalloc(bbt_nbpages * DOC_LAYOUT_PAGE_SIZE, GFP_KERNEL);