summaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2012-03-05 17:57:58 +0100
committerArnd Bergmann <arnd@arndb.de>2012-03-05 17:58:11 +0100
commit3a70b7e05f62d4e1bfd5744368ea1fd855b6e03c (patch)
tree0a74b982ab63dd20433bfe6abefdc8dd1b7336b4 /drivers/net
parentMerge tag 'tegra-soc-drivers' of git://git.kernel.org/pub/scm/linux/kernel/gi... (diff)
parentmfd: twl-core: Add IRQ_DOMAIN dependency (diff)
downloadlinux-3a70b7e05f62d4e1bfd5744368ea1fd855b6e03c.tar.xz
linux-3a70b7e05f62d4e1bfd5744368ea1fd855b6e03c.zip
Merge branch 'depends/irqdomain' into next/drivers
This is needed in order for the tegra/soc-drivers branch to work. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/phy/mdio-gpio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/mdio-gpio.c b/drivers/net/phy/mdio-gpio.c
index 50e8e5e74465..7189adf54bd1 100644
--- a/drivers/net/phy/mdio-gpio.c
+++ b/drivers/net/phy/mdio-gpio.c
@@ -255,13 +255,13 @@ static inline int __init mdio_ofgpio_init(void)
return platform_driver_register(&mdio_ofgpio_driver);
}
-static inline void __exit mdio_ofgpio_exit(void)
+static inline void mdio_ofgpio_exit(void)
{
platform_driver_unregister(&mdio_ofgpio_driver);
}
#else
static inline int __init mdio_ofgpio_init(void) { return 0; }
-static inline void __exit mdio_ofgpio_exit(void) { }
+static inline void mdio_ofgpio_exit(void) { }
#endif /* CONFIG_OF_GPIO */
static struct platform_driver mdio_gpio_driver = {