Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 26572
b: refs/heads/master
c: f55925d
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Hemminger committed May 8, 2006
1 parent dd75620 commit fefc02a
Show file tree
Hide file tree
Showing 2 changed files with 3 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: 1e5f1283a2aed429f4457e2eb875b1928a6643df
refs/heads/master: f55925d7eb04f936ab4c001f10e3e9c74c1297ae
3 changes: 2 additions & 1 deletion trunk/drivers/net/sky2.c
Original file line number Diff line number Diff line change
Expand Up @@ -1927,7 +1927,8 @@ static int sky2_status_intr(struct sky2_hw *hw, int to_do)

case OP_TXINDEXLE:
/* TX index reports status for both ports */
sky2_tx_done(hw->dev[0], status & 0xffff);
BUILD_BUG_ON(TX_RING_SIZE > 0x1000);
sky2_tx_done(hw->dev[0], status & 0xfff);
if (hw->dev[1])
sky2_tx_done(hw->dev[1],
((status >> 24) & 0xff)
Expand Down

0 comments on commit fefc02a

Please sign in to comment.