Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 109842
b: refs/heads/master
c: 49f276b
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Hemminger authored and Linus Torvalds committed Sep 17, 2008
1 parent b1d20c2 commit df86006
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: e95926d05d028a6bf0ab60b21b484c3d622fdcd1
refs/heads/master: 49f276be7ce12d90b6941a000b09e61b68e6c4f2
8 changes: 4 additions & 4 deletions trunk/drivers/net/hp-plus.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ static int __init do_hpp_probe(struct net_device *dev)
#ifndef MODULE
struct net_device * __init hp_plus_probe(int unit)
{
struct net_device *dev = alloc_ei_netdev();
struct net_device *dev = alloc_eip_netdev();
int err;

if (!dev)
Expand Down Expand Up @@ -284,7 +284,7 @@ hpp_open(struct net_device *dev)
int option_reg;
int retval;

if ((retval = request_irq(dev->irq, ei_interrupt, 0, dev->name, dev))) {
if ((retval = request_irq(dev->irq, eip_interrupt, 0, dev->name, dev))) {
return retval;
}

Expand All @@ -302,7 +302,7 @@ hpp_open(struct net_device *dev)
/* Select the operational page. */
outw(Perf_Page, ioaddr + HP_PAGING);

ei_open(dev);
eip_open(dev);
return 0;
}

Expand All @@ -313,7 +313,7 @@ hpp_close(struct net_device *dev)
int option_reg = inw(ioaddr + HPP_OPTION);

free_irq(dev->irq, dev);
ei_close(dev);
eip_close(dev);
outw((option_reg & ~EnableIRQ) | MemDisable | NICReset | ChipReset,
ioaddr + HPP_OPTION);

Expand Down

0 comments on commit df86006

Please sign in to comment.