Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 73956
b: refs/heads/master
c: d8ecbb9
h: refs/heads/master
v: v3
  • Loading branch information
Kim Phillips authored and Kumar Gala committed Nov 20, 2007
1 parent b898405 commit 156481e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 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: 7ac33417ecf8c012df0e957cfa0628a6a4347c7d
refs/heads/master: d8ecbb93bece05df84e654c296c3c81b3d347c2d
7 changes: 4 additions & 3 deletions trunk/arch/powerpc/platforms/83xx/mpc832x_mds.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,11 @@ static void __init mpc832x_sys_setup_arch(void)

if ((np = of_find_compatible_node(NULL, "network", "ucc_geth"))
!= NULL){
/* Reset the Ethernet PHY */
bcsr_regs[9] &= ~0x20;
/* Reset the Ethernet PHYs */
#define BCSR8_FETH_RST 0x50
bcsr_regs[8] &= ~BCSR8_FETH_RST;
udelay(1000);
bcsr_regs[9] |= 0x20;
bcsr_regs[8] |= BCSR8_FETH_RST;
iounmap(bcsr_regs);
of_node_put(np);
}
Expand Down

0 comments on commit 156481e

Please sign in to comment.