diff options
author | Geliang Tang <geliangtang@gmail.com> | 2016-11-18 17:12:28 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-11-22 12:16:17 +0300 |
commit | d65aa4b67b4f47f303bdeaef1e4d42ef18e6b293 (patch) | |
tree | f70256d4a33898f226997edb570e52a6d7e71deb /drivers/gpio/gpio-mb86s7x.c | |
parent | 6f1bd54ca49cdd4f98386212c8029e2d5b9f7865 (diff) | |
download | linux-d65aa4b67b4f47f303bdeaef1e4d42ef18e6b293.tar.xz |
gpio: mb86s7x: use builtin_platform_driver
Use builtin_platform_driver() helper to simplify the code.
Signed-off-by: Geliang Tang <geliangtang@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-mb86s7x.c')
-rw-r--r-- | drivers/gpio/gpio-mb86s7x.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/gpio/gpio-mb86s7x.c b/drivers/gpio/gpio-mb86s7x.c index d55af50e7034..ffb73f688ae1 100644 --- a/drivers/gpio/gpio-mb86s7x.c +++ b/drivers/gpio/gpio-mb86s7x.c @@ -217,8 +217,4 @@ static struct platform_driver mb86s70_gpio_driver = { .remove = mb86s70_gpio_remove, }; -static int __init mb86s70_gpio_init(void) -{ - return platform_driver_register(&mb86s70_gpio_driver); -} -device_initcall(mb86s70_gpio_init); +builtin_platform_driver(mb86s70_gpio_driver); |