mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 06:31:52 +00:00
gpio: mockup: add missing prefixes
Add the gpio_mockup_ prefix to the remaining symbols that still don't have it, so that the entire driver code is consistent. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
539340f37e
commit
f3b47170e0
@ -327,8 +327,9 @@ static struct platform_driver gpio_mockup_driver = {
|
||||
.probe = gpio_mockup_probe,
|
||||
};
|
||||
|
||||
static struct platform_device *pdev;
|
||||
static int __init mock_device_init(void)
|
||||
static struct platform_device *gpio_mockup_pdev;
|
||||
|
||||
static int __init gpio_mockup_init(void)
|
||||
{
|
||||
int err;
|
||||
|
||||
@ -337,34 +338,34 @@ static int __init mock_device_init(void)
|
||||
pr_err("%s: error creating debugfs directory\n",
|
||||
GPIO_MOCKUP_NAME);
|
||||
|
||||
pdev = platform_device_alloc(GPIO_MOCKUP_NAME, -1);
|
||||
if (!pdev)
|
||||
gpio_mockup_pdev = platform_device_alloc(GPIO_MOCKUP_NAME, -1);
|
||||
if (!gpio_mockup_pdev)
|
||||
return -ENOMEM;
|
||||
|
||||
err = platform_device_add(pdev);
|
||||
err = platform_device_add(gpio_mockup_pdev);
|
||||
if (err) {
|
||||
platform_device_put(pdev);
|
||||
platform_device_put(gpio_mockup_pdev);
|
||||
return err;
|
||||
}
|
||||
|
||||
err = platform_driver_register(&gpio_mockup_driver);
|
||||
if (err) {
|
||||
platform_device_unregister(pdev);
|
||||
platform_device_unregister(gpio_mockup_pdev);
|
||||
return err;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void __exit mock_device_exit(void)
|
||||
static void __exit gpio_mockup_exit(void)
|
||||
{
|
||||
debugfs_remove_recursive(gpio_mockup_dbg_dir);
|
||||
platform_driver_unregister(&gpio_mockup_driver);
|
||||
platform_device_unregister(pdev);
|
||||
platform_device_unregister(gpio_mockup_pdev);
|
||||
}
|
||||
|
||||
module_init(mock_device_init);
|
||||
module_exit(mock_device_exit);
|
||||
module_init(gpio_mockup_init);
|
||||
module_exit(gpio_mockup_exit);
|
||||
|
||||
MODULE_AUTHOR("Kamlakant Patel <kamlakant.patel@broadcom.com>");
|
||||
MODULE_AUTHOR("Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>");
|
||||
|
Loading…
Reference in New Issue
Block a user