Skip to content

Commit

Permalink
firmware: vpd: Tie firmware kobject to device lifetime
Browse files Browse the repository at this point in the history
It doesn't make sense to have /sys/firmware/vpd if the device is not
instantiated, so tie its lifetime to the device.

Fixes: 049a59d ("firmware: Google VPD sysfs driver")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Cc: stable <stable@vger.kernel.org>
Reviewed-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Tested-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Guenter Roeck authored and Greg Kroah-Hartman committed Nov 28, 2017
1 parent 811d7e0 commit e4b28b3
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions drivers/firmware/google/vpd.c
Original file line number Diff line number Diff line change
@@ -295,14 +295,26 @@ static int vpd_probe(struct platform_device *pdev)
if (ret)
return ret;

return vpd_sections_init(entry.cbmem_addr);
vpd_kobj = kobject_create_and_add("vpd", firmware_kobj);
if (!vpd_kobj)
return -ENOMEM;

ret = vpd_sections_init(entry.cbmem_addr);
if (ret) {
kobject_put(vpd_kobj);
return ret;
}

return 0;
}

static int vpd_remove(struct platform_device *pdev)
{
vpd_section_destroy(&ro_vpd);
vpd_section_destroy(&rw_vpd);

kobject_put(vpd_kobj);

return 0;
}

@@ -322,18 +334,13 @@ static int __init vpd_platform_init(void)
if (IS_ERR(pdev))
return PTR_ERR(pdev);

vpd_kobj = kobject_create_and_add("vpd", firmware_kobj);
if (!vpd_kobj)
return -ENOMEM;

platform_driver_register(&vpd_driver);

return 0;
}

static void __exit vpd_platform_exit(void)
{
kobject_put(vpd_kobj);
}

module_init(vpd_platform_init);

0 comments on commit e4b28b3

Please sign in to comment.