Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 63087
b: refs/heads/master
c: 4af4b84
h: refs/heads/master
i:
  63085: 54cafcb
  63083: 149c79a
  63079: 76f3e33
  63071: 8e55c91
v: v3
  • Loading branch information
Michael Hennerich authored and Bryan Wu committed Jul 25, 2007
1 parent b3358e1 commit ef31f34
Show file tree
Hide file tree
Showing 2 changed files with 6 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: 50e163ce8e3cb17d41367899fbf50a17e358cc89
refs/heads/master: 4af4b84088696777e222a5b0e3f55a81935bc9cc
6 changes: 5 additions & 1 deletion trunk/drivers/net/bfin_mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,7 @@ static void bf537mac_shutdown(struct net_device *dev)
*/
static int bf537mac_open(struct net_device *dev)
{
int retval;
pr_debug("%s: %s\n", dev->name, __FUNCTION__);

/*
Expand All @@ -811,7 +812,10 @@ static int bf537mac_open(struct net_device *dev)
}

/* initial rx and tx list */
desc_list_init();
retval = desc_list_init();

if (retval)
return retval;

bf537mac_setphy(dev);
setup_system_regs(dev);
Expand Down

0 comments on commit ef31f34

Please sign in to comment.