Skip to content

Commit

Permalink
Merge branch 'davem-next.r8169' of git://violet.fr.zoreil.com/romieu/…
Browse files Browse the repository at this point in the history
…linux
  • Loading branch information
David S. Miller committed Jul 11, 2012
2 parents 04c9f41 + 5f8bcce commit 4e01df2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/realtek/r8169.c
Original file line number Diff line number Diff line change
Expand Up @@ -6753,14 +6753,14 @@ static void __devinit rtl_hw_init_8168g(struct rtl8169_private *tp)
msleep(1);
RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);

data = r8168_mac_ocp_read(ioaddr, 0xe8de);
data = r8168_mac_ocp_read(tp, 0xe8de);
data &= ~(1 << 14);
r8168_mac_ocp_write(tp, 0xe8de, data);

if (!rtl_udelay_loop_wait_high(tp, &rtl_link_list_ready_cond, 100, 42))
return;

data = r8168_mac_ocp_read(ioaddr, 0xe8de);
data = r8168_mac_ocp_read(tp, 0xe8de);
data |= (1 << 15);
r8168_mac_ocp_write(tp, 0xe8de, data);

Expand Down

0 comments on commit 4e01df2

Please sign in to comment.