Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 72162
b: refs/heads/master
c: be6cb66
h: refs/heads/master
v: v3
  • Loading branch information
Philippe De Muyter authored and Linus Torvalds committed Oct 23, 2007
1 parent 283318b commit 592a463
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 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: dbf18c8f62cd87473d6db8c16afe4207bc370d3e
refs/heads/master: be6cb66da76fe089a4032a85c3825223a2216beb
7 changes: 2 additions & 5 deletions trunk/drivers/net/fec.c
Original file line number Diff line number Diff line change
Expand Up @@ -766,14 +766,11 @@ mii_queue(struct net_device *dev, int regval, void (*func)(uint, struct net_devi

static void mii_do_cmd(struct net_device *dev, const phy_cmd_t *c)
{
int k;

if(!c)
return;

for(k = 0; (c+k)->mii_data != mk_mii_end; k++) {
mii_queue(dev, (c+k)->mii_data, (c+k)->funct);
}
for (; c->mii_data != mk_mii_end; c++)
mii_queue(dev, c->mii_data, c->funct);
}

static void mii_parse_sr(uint mii_reg, struct net_device *dev)
Expand Down

0 comments on commit 592a463

Please sign in to comment.