Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 341768
b: refs/heads/master
c: 854de92
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Dec 3, 2012
1 parent ebec907 commit 79d2191
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ff76a3cca3a2f8664e0625cb4d75601ff9ccde76
refs/heads/master: 854de92f6d3471e694ea807a52b2670862b15d42
6 changes: 3 additions & 3 deletions trunk/drivers/net/ethernet/cisco/enic/enic_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2275,7 +2275,7 @@ static void enic_iounmap(struct enic *enic)
iounmap(enic->bar[i].vaddr);
}

static int __devinit enic_probe(struct pci_dev *pdev,
static int enic_probe(struct pci_dev *pdev,
const struct pci_device_id *ent)
{
struct device *dev = &pdev->dev;
Expand Down Expand Up @@ -2552,7 +2552,7 @@ static int __devinit enic_probe(struct pci_dev *pdev,
return err;
}

static void __devexit enic_remove(struct pci_dev *pdev)
static void enic_remove(struct pci_dev *pdev)
{
struct net_device *netdev = pci_get_drvdata(pdev);

Expand Down Expand Up @@ -2584,7 +2584,7 @@ static struct pci_driver enic_driver = {
.name = DRV_NAME,
.id_table = enic_id_table,
.probe = enic_probe,
.remove = __devexit_p(enic_remove),
.remove = enic_remove,
};

static int __init enic_init_module(void)
Expand Down

0 comments on commit 79d2191

Please sign in to comment.