Skip to content

Commit

Permalink
net/phy: remove __dev* attributes
Browse files Browse the repository at this point in the history
CONFIG_HOTPLUG is going away as an option.  As result the __dev*
markings will be going away.

Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst,
and __devexit.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Dec 3, 2012
1 parent 45ac936 commit 633d159
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions drivers/net/phy/mdio-gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ static struct mdiobb_ops mdio_gpio_ops = {
.get_mdio_data = mdio_get,
};

static struct mii_bus * __devinit mdio_gpio_bus_init(struct device *dev,
static struct mii_bus *mdio_gpio_bus_init(struct device *dev,
struct mdio_gpio_platform_data *pdata,
int bus_id)
{
Expand Down Expand Up @@ -173,15 +173,15 @@ static void mdio_gpio_bus_deinit(struct device *dev)
kfree(bitbang);
}

static void __devexit mdio_gpio_bus_destroy(struct device *dev)
static void mdio_gpio_bus_destroy(struct device *dev)
{
struct mii_bus *bus = dev_get_drvdata(dev);

mdiobus_unregister(bus);
mdio_gpio_bus_deinit(dev);
}

static int __devinit mdio_gpio_probe(struct platform_device *pdev)
static int mdio_gpio_probe(struct platform_device *pdev)
{
struct mdio_gpio_platform_data *pdata;
struct mii_bus *new_bus;
Expand Down Expand Up @@ -213,7 +213,7 @@ static int __devinit mdio_gpio_probe(struct platform_device *pdev)
return ret;
}

static int __devexit mdio_gpio_remove(struct platform_device *pdev)
static int mdio_gpio_remove(struct platform_device *pdev)
{
mdio_gpio_bus_destroy(&pdev->dev);

Expand All @@ -227,7 +227,7 @@ static struct of_device_id mdio_gpio_of_match[] = {

static struct platform_driver mdio_gpio_driver = {
.probe = mdio_gpio_probe,
.remove = __devexit_p(mdio_gpio_remove),
.remove = mdio_gpio_remove,
.driver = {
.name = "mdio-gpio",
.owner = THIS_MODULE,
Expand Down
6 changes: 3 additions & 3 deletions drivers/net/phy/mdio-mux-gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ static int mdio_mux_gpio_switch_fn(int current_child, int desired_child,
return 0;
}

static int __devinit mdio_mux_gpio_probe(struct platform_device *pdev)
static int mdio_mux_gpio_probe(struct platform_device *pdev)
{
enum of_gpio_flags f;
struct mdio_mux_gpio_state *s;
Expand Down Expand Up @@ -104,7 +104,7 @@ static int __devinit mdio_mux_gpio_probe(struct platform_device *pdev)
return r;
}

static int __devexit mdio_mux_gpio_remove(struct platform_device *pdev)
static int mdio_mux_gpio_remove(struct platform_device *pdev)
{
struct mdio_mux_gpio_state *s = pdev->dev.platform_data;
mdio_mux_uninit(s->mux_handle);
Expand All @@ -130,7 +130,7 @@ static struct platform_driver mdio_mux_gpio_driver = {
.of_match_table = mdio_mux_gpio_match,
},
.probe = mdio_mux_gpio_probe,
.remove = __devexit_p(mdio_mux_gpio_remove),
.remove = mdio_mux_gpio_remove,
};

module_platform_driver(mdio_mux_gpio_driver);
Expand Down
6 changes: 3 additions & 3 deletions drivers/net/phy/mdio-mux-mmioreg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static int mdio_mux_mmioreg_switch_fn(int current_child, int desired_child,
return 0;
}

static int __devinit mdio_mux_mmioreg_probe(struct platform_device *pdev)
static int mdio_mux_mmioreg_probe(struct platform_device *pdev)
{
struct device_node *np2, *np = pdev->dev.of_node;
struct mdio_mux_mmioreg_state *s;
Expand Down Expand Up @@ -137,7 +137,7 @@ static int __devinit mdio_mux_mmioreg_probe(struct platform_device *pdev)
return 0;
}

static int __devexit mdio_mux_mmioreg_remove(struct platform_device *pdev)
static int mdio_mux_mmioreg_remove(struct platform_device *pdev)
{
struct mdio_mux_mmioreg_state *s = dev_get_platdata(&pdev->dev);

Expand All @@ -161,7 +161,7 @@ static struct platform_driver mdio_mux_mmioreg_driver = {
.of_match_table = mdio_mux_mmioreg_match,
},
.probe = mdio_mux_mmioreg_probe,
.remove = __devexit_p(mdio_mux_mmioreg_remove),
.remove = mdio_mux_mmioreg_remove,
};

module_platform_driver(mdio_mux_mmioreg_driver);
Expand Down
6 changes: 3 additions & 3 deletions drivers/net/phy/mdio-octeon.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static int octeon_mdiobus_write(struct mii_bus *bus, int phy_id,
return 0;
}

static int __devinit octeon_mdiobus_probe(struct platform_device *pdev)
static int octeon_mdiobus_probe(struct platform_device *pdev)
{
struct octeon_mdiobus *bus;
struct resource *res_mem;
Expand Down Expand Up @@ -159,7 +159,7 @@ static int __devinit octeon_mdiobus_probe(struct platform_device *pdev)
return err;
}

static int __devexit octeon_mdiobus_remove(struct platform_device *pdev)
static int octeon_mdiobus_remove(struct platform_device *pdev)
{
struct octeon_mdiobus *bus;
union cvmx_smix_en smi_en;
Expand Down Expand Up @@ -188,7 +188,7 @@ static struct platform_driver octeon_mdiobus_driver = {
.of_match_table = octeon_mdiobus_match,
},
.probe = octeon_mdiobus_probe,
.remove = __devexit_p(octeon_mdiobus_remove),
.remove = octeon_mdiobus_remove,
};

void octeon_mdiobus_force_mod_depencency(void)
Expand Down
6 changes: 3 additions & 3 deletions drivers/net/phy/spi_ks8995.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ static struct bin_attribute ks8995_registers_attr = {

/* ------------------------------------------------------------------------ */

static int __devinit ks8995_probe(struct spi_device *spi)
static int ks8995_probe(struct spi_device *spi)
{
struct ks8995_switch *ks;
struct ks8995_pdata *pdata;
Expand Down Expand Up @@ -332,7 +332,7 @@ static int __devinit ks8995_probe(struct spi_device *spi)
return err;
}

static int __devexit ks8995_remove(struct spi_device *spi)
static int ks8995_remove(struct spi_device *spi)
{
struct ks8995_data *ks8995;

Expand All @@ -353,7 +353,7 @@ static struct spi_driver ks8995_driver = {
.owner = THIS_MODULE,
},
.probe = ks8995_probe,
.remove = __devexit_p(ks8995_remove),
.remove = ks8995_remove,
};

static int __init ks8995_init(void)
Expand Down

0 comments on commit 633d159

Please sign in to comment.