Commit f79047b1 authored by Enrico Weigelt's avatar Enrico Weigelt Committed by Linus Walleij

gpio: siox: Use module_siox_driver()

Reduce driver init boilerplate by using the new
module_siox_driver() macro.
Signed-off-by: default avatarEnrico Weigelt <info@metux.net>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 8f3fd895
...@@ -275,18 +275,7 @@ static struct siox_driver gpio_siox_driver = { ...@@ -275,18 +275,7 @@ static struct siox_driver gpio_siox_driver = {
.name = "gpio-siox", .name = "gpio-siox",
}, },
}; };
module_siox_driver(gpio_siox_driver);
static int __init gpio_siox_init(void)
{
return siox_driver_register(&gpio_siox_driver);
}
module_init(gpio_siox_init);
static void __exit gpio_siox_exit(void)
{
siox_driver_unregister(&gpio_siox_driver);
}
module_exit(gpio_siox_exit);
MODULE_AUTHOR("Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>"); MODULE_AUTHOR("Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>");
MODULE_DESCRIPTION("SIOX gpio driver"); MODULE_DESCRIPTION("SIOX gpio driver");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment