diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:22:14 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 15:05:02 -0800 |
commit | 4cd2b92de30f511aa6b203cbff2692aa09dc1226 (patch) | |
tree | 457d6a4aac60d6f85cd9911145ae10a5c5e94ee9 /drivers/staging/sbe-2t3e3 | |
parent | db53ac71fe7e16add7be58985a1eb2aeb46dc8b0 (diff) |
staging: sbe-2t3e3: remove use of __devinit
CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/sbe-2t3e3')
-rw-r--r-- | drivers/staging/sbe-2t3e3/module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/sbe-2t3e3/module.c b/drivers/staging/sbe-2t3e3/module.c index 8e1a043b6b9f..69b451ee830b 100644 --- a/drivers/staging/sbe-2t3e3/module.c +++ b/drivers/staging/sbe-2t3e3/module.c @@ -52,7 +52,7 @@ static void t3e3_remove_channel(struct channel *channel) pci_set_drvdata(pdev, NULL); } -static int __devinit t3e3_init_channel(struct channel *channel, struct pci_dev *pdev, struct card *card) +static int t3e3_init_channel(struct channel *channel, struct pci_dev *pdev, struct card *card) { struct net_device *dev; unsigned int val; @@ -131,7 +131,7 @@ static void __devexit t3e3_remove_card(struct pci_dev *pdev) kfree(card); } -static int __devinit t3e3_init_card(struct pci_dev *pdev, const struct pci_device_id *ent) +static int t3e3_init_card(struct pci_dev *pdev, const struct pci_device_id *ent) { /* pdev points to channel #0 */ struct pci_dev *pdev1 = NULL; |