aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2007-02-14 20:13:39 -0600
committerJeff Garzik <jeff@garzik.org>2007-02-17 15:16:08 -0500
commita62daa4c7544a0f0ca94d61458e3f78f630e0c05 (patch)
tree4ed1f9bb48bee60349c96df36919ec879c703a9e
parentatl1: drop NET_PCI from Kconfig (diff)
downloadlinux-dev-a62daa4c7544a0f0ca94d61458e3f78f630e0c05.tar.xz
linux-dev-a62daa4c7544a0f0ca94d61458e3f78f630e0c05.zip
atl1: fix bad ioread address
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> Signed-off-by: Jeff Garzik <jeff@garzik.org>
-rw-r--r--drivers/net/atl1/atl1_hw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/atl1/atl1_hw.c b/drivers/net/atl1/atl1_hw.c
index 08b2d785469d..e28707a2b482 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));
}