aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-74x164.c
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2012-09-05 10:40:50 +0200
committerLinus Walleij <linus.walleij@linaro.org>2012-09-07 23:00:32 +0200
commitab3b8782618c046386b85ada5e0e789212f17cf8 (patch)
tree22305a4080ef348f39ba881d4915db38c4754239 /drivers/gpio/gpio-74x164.c
parentgpio: sx150x: Use irq_data_get_irq_chip_data() at appropriate places (diff)
downloadlinux-dev-ab3b8782618c046386b85ada5e0e789212f17cf8.tar.xz
linux-dev-ab3b8782618c046386b85ada5e0e789212f17cf8.zip
gpio: 74x164: Use module_spi_driver boiler plate function
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Acked-by: Florian Fainelli <florian@openwrt.org> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-74x164.c')
-rw-r--r--drivers/gpio/gpio-74x164.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/gpio/gpio-74x164.c b/drivers/gpio/gpio-74x164.c
index a31ad6f5d910..2975036c36b7 100644
--- a/drivers/gpio/gpio-74x164.c
+++ b/drivers/gpio/gpio-74x164.c
@@ -159,18 +159,7 @@ static struct spi_driver gen_74x164_driver = {
.probe = gen_74x164_probe,
.remove = __devexit_p(gen_74x164_remove),
};
-
-static int __init gen_74x164_init(void)
-{
- return spi_register_driver(&gen_74x164_driver);
-}
-subsys_initcall(gen_74x164_init);
-
-static void __exit gen_74x164_exit(void)
-{
- spi_unregister_driver(&gen_74x164_driver);
-}
-module_exit(gen_74x164_exit);
+module_spi_driver(gen_74x164_driver);
MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>");
MODULE_AUTHOR("Miguel Gaio <miguel.gaio@efixo.com>");