Skip to content

Commit

Permalink
[PATCH] Typo in tulip driver
Browse files Browse the repository at this point in the history
This patch fixes a typo in tulip driver in 2.6.12-rc3.
  • Loading branch information
Jiri Benc authored and Jeff Garzik committed May 16, 2005
1 parent 9971869 commit c4cc26d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/tulip/tulip_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,7 @@ static void set_rx_mode(struct net_device *dev)
if (entry != 0) {
/* Avoid a chip errata by prefixing a dummy entry. Don't do
this on the ULI526X as it triggers a different problem */
if (!(tp->chip_id == ULI526X && (tp->revision = 0x40 || tp->revision == 0x50))) {
if (!(tp->chip_id == ULI526X && (tp->revision == 0x40 || tp->revision == 0x50))) {
tp->tx_buffers[entry].skb = NULL;
tp->tx_buffers[entry].mapping = 0;
tp->tx_ring[entry].length =
Expand Down

0 comments on commit c4cc26d

Please sign in to comment.