diff options
author | Arnd Bergmann <arnd@arndb.de> | 2012-03-05 17:57:58 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2012-03-05 17:58:11 +0100 |
commit | 3a70b7e05f62d4e1bfd5744368ea1fd855b6e03c (patch) | |
tree | 0a74b982ab63dd20433bfe6abefdc8dd1b7336b4 /drivers/net | |
parent | Merge tag 'tegra-soc-drivers' of git://git.kernel.org/pub/scm/linux/kernel/gi... (diff) | |
parent | mfd: twl-core: Add IRQ_DOMAIN dependency (diff) | |
download | linux-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.c | 4 |
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 = { |