aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorGeliang Tang <geliangtang@gmail.com>2016-11-18 22:12:28 +0800
committerLinus Walleij <linus.walleij@linaro.org>2016-11-22 10:16:17 +0100
commitd65aa4b67b4f47f303bdeaef1e4d42ef18e6b293 (patch)
treef70256d4a33898f226997edb570e52a6d7e71deb /drivers/gpio
parentgpio: etraxfs: use builtin_platform_driver (diff)
downloadlinux-dev-d65aa4b67b4f47f303bdeaef1e4d42ef18e6b293.tar.xz
linux-dev-d65aa4b67b4f47f303bdeaef1e4d42ef18e6b293.zip
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')
-rw-r--r--drivers/gpio/gpio-mb86s7x.c6
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);