Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 35175
b: refs/heads/master
c: 7820d42
h: refs/heads/master
i:
  35173: 27e401a
  35171: ff0380d
  35167: 106e468
v: v3
  • Loading branch information
Jeff Kirsher authored and Auke Kok committed Aug 16, 2006
1 parent 3eece78 commit 49f9293
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c9c1b834c7b6e00badfd9a775682644f192f0357
refs/heads/master: 7820d4281a0d746a92992a9117aec007628ae3fe
11 changes: 11 additions & 0 deletions trunk/drivers/net/e1000/e1000_hw.c
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,17 @@ e1000_init_hw(struct e1000_hw *hw)

DEBUGFUNC("e1000_init_hw");

/* force full DMA clock frequency for 10/100 on ICH8 A0-B0 */
if (hw->mac_type == e1000_ich8lan) {
reg_data = E1000_READ_REG(hw, TARC0);
reg_data |= 0x30000000;
E1000_WRITE_REG(hw, TARC0, reg_data);

reg_data = E1000_READ_REG(hw, STATUS);
reg_data &= ~0x80000000;
E1000_WRITE_REG(hw, STATUS, reg_data);
}

/* Initialize Identification LED */
ret_val = e1000_id_led_init(hw);
if(ret_val) {
Expand Down

0 comments on commit 49f9293

Please sign in to comment.