2
0
forked from Ivasoft/openwrt

ar71xx: remove __dev{init,exit} annotations from kernel files

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

SVN-Revision: 35687
This commit is contained in:
Gabor Juhos
2013-02-19 20:52:06 +00:00
parent 7d0d29ab6e
commit 4341b11f3e
13 changed files with 34 additions and 34 deletions

View File

@@ -1165,7 +1165,7 @@ void ag71xx_ar7240_stop(struct ag71xx *ag)
cancel_delayed_work_sync(&ag->link_work);
}
int __devinit ag71xx_ar7240_init(struct ag71xx *ag)
int ag71xx_ar7240_init(struct ag71xx *ag)
{
struct ar7240sw *as;

View File

@@ -1056,7 +1056,7 @@ static const struct net_device_ops ag71xx_netdev_ops = {
#endif
};
static __devinit const char *ag71xx_get_phy_if_mode_name(phy_interface_t mode)
static const char *ag71xx_get_phy_if_mode_name(phy_interface_t mode)
{
switch (mode) {
case PHY_INTERFACE_MODE_MII:
@@ -1077,7 +1077,7 @@ static __devinit const char *ag71xx_get_phy_if_mode_name(phy_interface_t mode)
}
static int __devinit ag71xx_probe(struct platform_device *pdev)
static int ag71xx_probe(struct platform_device *pdev)
{
struct net_device *dev;
struct resource *res;
@@ -1210,7 +1210,7 @@ err_out:
return err;
}
static int __devexit ag71xx_remove(struct platform_device *pdev)
static int ag71xx_remove(struct platform_device *pdev)
{
struct net_device *dev = platform_get_drvdata(pdev);
@@ -1231,7 +1231,7 @@ static int __devexit ag71xx_remove(struct platform_device *pdev)
static struct platform_driver ag71xx_driver = {
.probe = ag71xx_probe,
.remove = __exit_p(ag71xx_remove),
.remove = ag71xx_remove,
.driver = {
.name = AG71XX_DRV_NAME,
}

View File

@@ -205,7 +205,7 @@ static int ag71xx_mdio_write(struct mii_bus *bus, int addr, int reg, u16 val)
return 0;
}
static int __devinit ag71xx_mdio_probe(struct platform_device *pdev)
static int ag71xx_mdio_probe(struct platform_device *pdev)
{
struct ag71xx_mdio_platform_data *pdata;
struct ag71xx_mdio *am;
@@ -281,7 +281,7 @@ err_out:
return err;
}
static int __devexit ag71xx_mdio_remove(struct platform_device *pdev)
static int ag71xx_mdio_remove(struct platform_device *pdev)
{
struct ag71xx_mdio *am = platform_get_drvdata(pdev);
@@ -298,7 +298,7 @@ static int __devexit ag71xx_mdio_remove(struct platform_device *pdev)
static struct platform_driver ag71xx_mdio_driver = {
.probe = ag71xx_mdio_probe,
.remove = __exit_p(ag71xx_mdio_remove),
.remove = ag71xx_mdio_remove,
.driver = {
.name = "ag71xx-mdio",
}

View File

@@ -193,7 +193,7 @@ static struct mii_bus *dev_to_mii_bus(struct device *dev)
return NULL;
}
int __devinit ag71xx_phy_connect(struct ag71xx *ag)
int ag71xx_phy_connect(struct ag71xx *ag)
{
struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);