Commit ae5d8438 authored by Frans Klaver's avatar Frans Klaver Committed by Brian Norris

mtd: nand: nuc900_nand: show parent device in sysfs

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

While at it, make use of the default owner value set by mtdcore.
Signed-off-by: default avatarFrans Klaver <fransklaver@gmail.com>
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
parent 7829ab93
...@@ -250,7 +250,7 @@ static int nuc900_nand_probe(struct platform_device *pdev) ...@@ -250,7 +250,7 @@ static int nuc900_nand_probe(struct platform_device *pdev)
chip = &(nuc900_nand->chip); chip = &(nuc900_nand->chip);
nuc900_nand->mtd.priv = chip; nuc900_nand->mtd.priv = chip;
nuc900_nand->mtd.owner = THIS_MODULE; nuc900_nand->mtd.dev.parent = &pdev->dev;
spin_lock_init(&nuc900_nand->lock); spin_lock_init(&nuc900_nand->lock);
nuc900_nand->clk = devm_clk_get(&pdev->dev, NULL); nuc900_nand->clk = devm_clk_get(&pdev->dev, NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment