Merge tag 'dev_removal' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/net-next
Networking: Remove __dev* markings from the networking drivers This is a series of patches that remove the dev* attributes for all networking drivers, with the exception of wireless drivers, those are in a different branch. Use of __devinit, __devexit_p, __devinitdata, __devinitconst, and __devexit are no longer needed since CONFIG_HOTPLUG is being removed as an option. Note, there are some devinit compiler section mismatch warnings due to this series, but they are fixed up when merged with my driver-next branch, which fixes the PCI device id warnings, and removes the modpost detection, as it's no longer needed. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -228,7 +228,7 @@ typedef enum {
|
||||
static const struct {
|
||||
const char *name;
|
||||
u32 hw_flags;
|
||||
} board_info[] __devinitconst = {
|
||||
} board_info[] = {
|
||||
{ "RealTek RTL8139", RTL8139_CAPS },
|
||||
{ "RealTek RTL8129", RTL8129_CAPS },
|
||||
};
|
||||
@@ -748,7 +748,7 @@ static void rtl8139_chip_reset (void __iomem *ioaddr)
|
||||
}
|
||||
|
||||
|
||||
static __devinit struct net_device * rtl8139_init_board (struct pci_dev *pdev)
|
||||
static struct net_device *rtl8139_init_board(struct pci_dev *pdev)
|
||||
{
|
||||
struct device *d = &pdev->dev;
|
||||
void __iomem *ioaddr;
|
||||
@@ -935,8 +935,8 @@ static const struct net_device_ops rtl8139_netdev_ops = {
|
||||
.ndo_set_features = rtl8139_set_features,
|
||||
};
|
||||
|
||||
static int __devinit rtl8139_init_one (struct pci_dev *pdev,
|
||||
const struct pci_device_id *ent)
|
||||
static int rtl8139_init_one(struct pci_dev *pdev,
|
||||
const struct pci_device_id *ent)
|
||||
{
|
||||
struct net_device *dev = NULL;
|
||||
struct rtl8139_private *tp;
|
||||
@@ -1103,7 +1103,7 @@ err_out:
|
||||
}
|
||||
|
||||
|
||||
static void __devexit rtl8139_remove_one (struct pci_dev *pdev)
|
||||
static void rtl8139_remove_one(struct pci_dev *pdev)
|
||||
{
|
||||
struct net_device *dev = pci_get_drvdata (pdev);
|
||||
struct rtl8139_private *tp = netdev_priv(dev);
|
||||
@@ -1141,7 +1141,7 @@ static void __devexit rtl8139_remove_one (struct pci_dev *pdev)
|
||||
#define EE_READ_CMD (6)
|
||||
#define EE_ERASE_CMD (7)
|
||||
|
||||
static int __devinit read_eeprom (void __iomem *ioaddr, int location, int addr_len)
|
||||
static int read_eeprom(void __iomem *ioaddr, int location, int addr_len)
|
||||
{
|
||||
int i;
|
||||
unsigned retval = 0;
|
||||
@@ -2652,7 +2652,7 @@ static struct pci_driver rtl8139_pci_driver = {
|
||||
.name = DRV_NAME,
|
||||
.id_table = rtl8139_pci_tbl,
|
||||
.probe = rtl8139_init_one,
|
||||
.remove = __devexit_p(rtl8139_remove_one),
|
||||
.remove = rtl8139_remove_one,
|
||||
#ifdef CONFIG_PM
|
||||
.suspend = rtl8139_suspend,
|
||||
.resume = rtl8139_resume,
|
||||
|
@@ -3828,7 +3828,7 @@ static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
|
||||
}
|
||||
}
|
||||
|
||||
static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
|
||||
static void rtl_init_mdio_ops(struct rtl8169_private *tp)
|
||||
{
|
||||
struct mdio_ops *ops = &tp->mdio_ops;
|
||||
|
||||
@@ -4080,7 +4080,7 @@ static void rtl_pll_power_up(struct rtl8169_private *tp)
|
||||
rtl_generic_op(tp, tp->pll_power_ops.up);
|
||||
}
|
||||
|
||||
static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
|
||||
static void rtl_init_pll_power_ops(struct rtl8169_private *tp)
|
||||
{
|
||||
struct pll_power_ops *ops = &tp->pll_power_ops;
|
||||
|
||||
@@ -4274,7 +4274,7 @@ static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
|
||||
RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
|
||||
}
|
||||
|
||||
static void __devinit rtl_init_jumbo_ops(struct rtl8169_private *tp)
|
||||
static void rtl_init_jumbo_ops(struct rtl8169_private *tp)
|
||||
{
|
||||
struct jumbo_ops *ops = &tp->jumbo_ops;
|
||||
|
||||
@@ -4715,7 +4715,7 @@ static u32 r8402_csi_read(struct rtl8169_private *tp, int addr)
|
||||
RTL_R32(CSIDR) : ~0;
|
||||
}
|
||||
|
||||
static void __devinit rtl_init_csi_ops(struct rtl8169_private *tp)
|
||||
static void rtl_init_csi_ops(struct rtl8169_private *tp)
|
||||
{
|
||||
struct csi_ops *ops = &tp->csi_ops;
|
||||
|
||||
@@ -6610,7 +6610,7 @@ static void rtl_shutdown(struct pci_dev *pdev)
|
||||
pm_runtime_put_noidle(d);
|
||||
}
|
||||
|
||||
static void __devexit rtl_remove_one(struct pci_dev *pdev)
|
||||
static void rtl_remove_one(struct pci_dev *pdev)
|
||||
{
|
||||
struct net_device *dev = pci_get_drvdata(pdev);
|
||||
struct rtl8169_private *tp = netdev_priv(dev);
|
||||
@@ -6730,7 +6730,7 @@ DECLARE_RTL_COND(rtl_rxtx_empty_cond)
|
||||
return (RTL_R8(MCU) & RXTX_EMPTY) == RXTX_EMPTY;
|
||||
}
|
||||
|
||||
static void __devinit rtl_hw_init_8168g(struct rtl8169_private *tp)
|
||||
static void rtl_hw_init_8168g(struct rtl8169_private *tp)
|
||||
{
|
||||
void __iomem *ioaddr = tp->mmio_addr;
|
||||
u32 data;
|
||||
@@ -6764,7 +6764,7 @@ static void __devinit rtl_hw_init_8168g(struct rtl8169_private *tp)
|
||||
return;
|
||||
}
|
||||
|
||||
static void __devinit rtl_hw_initialize(struct rtl8169_private *tp)
|
||||
static void rtl_hw_initialize(struct rtl8169_private *tp)
|
||||
{
|
||||
switch (tp->mac_version) {
|
||||
case RTL_GIGA_MAC_VER_40:
|
||||
@@ -6777,7 +6777,7 @@ static void __devinit rtl_hw_initialize(struct rtl8169_private *tp)
|
||||
}
|
||||
}
|
||||
|
||||
static int __devinit
|
||||
static int
|
||||
rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
{
|
||||
const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
|
||||
@@ -7028,7 +7028,7 @@ static struct pci_driver rtl8169_pci_driver = {
|
||||
.name = MODULENAME,
|
||||
.id_table = rtl8169_pci_tbl,
|
||||
.probe = rtl_init_one,
|
||||
.remove = __devexit_p(rtl_remove_one),
|
||||
.remove = rtl_remove_one,
|
||||
.shutdown = rtl_shutdown,
|
||||
.driver.pm = RTL8169_PM_OPS,
|
||||
};
|
||||
|
Reference in New Issue
Block a user