Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 341750
b: refs/heads/master
c: 58b1069
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Dec 3, 2012
1 parent 2f266f6 commit 0a2a1a8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 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: 663c2a69e943b391b3cea25c616e339c5d5d4fab
refs/heads/master: 58b10698d2d60b0b0c3bddd72038af14e62f92bc
8 changes: 4 additions & 4 deletions trunk/drivers/net/ethernet/i825xx/lasi_82596.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ static void mpu_port(struct net_device *dev, int c, dma_addr_t x)

#define LAN_PROM_ADDR 0xF0810000

static int __devinit
static int
lan_init_chip(struct parisc_device *dev)
{
struct net_device *netdevice;
Expand Down Expand Up @@ -195,7 +195,7 @@ lan_init_chip(struct parisc_device *dev)
return retval;
}

static int __devexit lan_remove_chip (struct parisc_device *pdev)
static int lan_remove_chip(struct parisc_device *pdev)
{
struct net_device *dev = parisc_get_drvdata(pdev);
struct i596_private *lp = netdev_priv(dev);
Expand All @@ -219,10 +219,10 @@ static struct parisc_driver lan_driver = {
.name = "lasi_82596",
.id_table = lan_tbl,
.probe = lan_init_chip,
.remove = __devexit_p(lan_remove_chip),
.remove = lan_remove_chip,
};

static int __devinit lasi_82596_init(void)
static int lasi_82596_init(void)
{
printk(KERN_INFO LASI_82596_DRIVER_VERSION "\n");
return register_parisc_driver(&lan_driver);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/ethernet/i825xx/lib82596.c
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ static const struct net_device_ops i596_netdev_ops = {
#endif
};

static int __devinit i82596_probe(struct net_device *dev)
static int i82596_probe(struct net_device *dev)
{
int i;
struct i596_private *lp = netdev_priv(dev);
Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/net/ethernet/i825xx/sni_82596.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ static void mpu_port(struct net_device *dev, int c, dma_addr_t x)
}


static int __devinit sni_82596_probe(struct platform_device *dev)
static int sni_82596_probe(struct platform_device *dev)
{
struct net_device *netdevice;
struct i596_private *lp;
Expand Down Expand Up @@ -147,7 +147,7 @@ static int __devinit sni_82596_probe(struct platform_device *dev)
return retval;
}

static int __devexit sni_82596_driver_remove(struct platform_device *pdev)
static int sni_82596_driver_remove(struct platform_device *pdev)
{
struct net_device *dev = platform_get_drvdata(pdev);
struct i596_private *lp = netdev_priv(dev);
Expand All @@ -163,14 +163,14 @@ static int __devexit sni_82596_driver_remove(struct platform_device *pdev)

static struct platform_driver sni_82596_driver = {
.probe = sni_82596_probe,
.remove = __devexit_p(sni_82596_driver_remove),
.remove = sni_82596_driver_remove,
.driver = {
.name = sni_82596_string,
.owner = THIS_MODULE,
},
};

static int __devinit sni_82596_init(void)
static int sni_82596_init(void)
{
printk(KERN_INFO SNI_82596_DRIVER_VERSION "\n");
return platform_driver_register(&sni_82596_driver);
Expand Down

0 comments on commit 0a2a1a8

Please sign in to comment.