From: Al Viro Date: Thu, 15 Feb 2007 02:13:39 +0000 (-0600) Subject: atl1: fix bad ioread address X-Git-Tag: upstream/snapshot3+hdmi~35793^2~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a62daa4c7544a0f0ca94d61458e3f78f630e0c05;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git atl1: fix bad ioread address An ioread32 statement reads the wrong address. Fix it. Signed-off-by: Al Viro Signed-off-by: Jay Cliburn Signed-off-by: Chris Snook Signed-off-by: Jeff Garzik --- 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)); }