Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 35198
b: refs/heads/master
c: 401a552
h: refs/heads/master
v: v3
  • Loading branch information
Vasily Averin authored and Auke Kok committed Aug 28, 2006
1 parent 2c84dc0 commit 14d1b4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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: 8fc897b00a7d81ffaa24e18881c2d6b10698ab0b
refs/heads/master: 401a552b8b318d594fc44d36e3da13ad475a41f7
5 changes: 4 additions & 1 deletion trunk/drivers/net/e1000/e1000_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,7 @@ e1000_open(struct net_device *netdev)

err = e1000_request_irq(adapter);
if (err)
goto err_up;
goto err_req_irq;

e1000_power_up_phy(adapter);

Expand All @@ -1228,6 +1228,9 @@ e1000_open(struct net_device *netdev)
return E1000_SUCCESS;

err_up:
e1000_power_down_phy(adapter);
e1000_free_irq(adapter);
err_req_irq:
e1000_free_all_rx_resources(adapter);
err_setup_rx:
e1000_free_all_tx_resources(adapter);
Expand Down

0 comments on commit 14d1b4c

Please sign in to comment.