mtd: nand: gpio: 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: Frans Klaver <fransklaver@gmail.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
efefcaee76
commit
e6c6c284e7
|
@ -275,7 +275,7 @@ static int gpio_nand_probe(struct platform_device *pdev)
|
||||||
chip->cmd_ctrl = gpio_nand_cmd_ctrl;
|
chip->cmd_ctrl = gpio_nand_cmd_ctrl;
|
||||||
|
|
||||||
gpiomtd->mtd_info.priv = chip;
|
gpiomtd->mtd_info.priv = chip;
|
||||||
gpiomtd->mtd_info.owner = THIS_MODULE;
|
gpiomtd->mtd_info.dev.parent = &pdev->dev;
|
||||||
|
|
||||||
platform_set_drvdata(pdev, gpiomtd);
|
platform_set_drvdata(pdev, gpiomtd);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue