LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH 2/6] atl1: fix bad ioread address
@ 2007-02-15 2:13 Jay Cliburn
0 siblings, 0 replies; only message in thread
From: Jay Cliburn @ 2007-02-15 2:13 UTC (permalink / raw)
To: jeff; +Cc: csnook, netdev, linux-kernel, atl1-devel, viro
From: Al Viro <viro@zeniv.linux.org.uk>
An ioread32 statement reads the wrong address. Fix it.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Jay Cliburn <jacliburn@bellsouth.net>
Signed-off-by: Chris Snook <csnook@redhat.com>
---
drivers/net/atl1/atl1_hw.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/atl1/atl1_hw.c b/drivers/net/atl1/atl1_hw.c
index 08b2d78..e28707a 100644
--- a/drivers/net/atl1/atl1_hw.c
+++ b/drivers/net/atl1/atl1_hw.c
@@ -357,7 +357,7 @@ void atl1_hash_set(struct atl1_hw *hw, u32 hash_value)
*/
hash_reg = (hash_value >> 31) & 0x1;
hash_bit = (hash_value >> 26) & 0x1F;
- mta = ioread32((hw + REG_RX_HASH_TABLE) + (hash_reg << 2));
+ mta = ioread32((hw->hw_addr + REG_RX_HASH_TABLE) + (hash_reg << 2));
mta |= (1 << hash_bit);
iowrite32(mta, (hw->hw_addr + REG_RX_HASH_TABLE) + (hash_reg << 2));
}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-02-15 2:13 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-15 2:13 [PATCH 2/6] atl1: fix bad ioread address Jay Cliburn
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).