diff options
author | Magnus Damm <magnus.damm@gmail.com> | 2008-03-21 18:43:46 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-04-18 09:50:03 -0700 |
commit | b026a23c07d1bf21188c57e90118782c58db6061 (patch) | |
tree | 672146b1a6099182a8a380c22c90a67ee37d2b52 /arch/sh | |
parent | a0d29798e568116aa6c32aef7bab2d9e620c88ad (diff) | |
download | op-kernel-dev-b026a23c07d1bf21188c57e90118782c58db6061.zip op-kernel-dev-b026a23c07d1bf21188c57e90118782c58db6061.tar.gz |
sh: Use phyical addresses for MigoR smc91x resources
Use physical addresses and change resource name of MigoR ethernet chip.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/boards/renesas/migor/setup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/boards/renesas/migor/setup.c b/arch/sh/boards/renesas/migor/setup.c index aa79fc8..21df385 100644 --- a/arch/sh/boards/renesas/migor/setup.c +++ b/arch/sh/boards/renesas/migor/setup.c @@ -26,9 +26,9 @@ static struct resource smc91x_eth_resources[] = { [0] = { - .name = "smc91x-regs" , - .start = P2SEGADDR(0x10000300), - .end = P2SEGADDR(0x1000030f), + .name = "SMC91C111" , + .start = 0x10000300, + .end = 0x1000030f, .flags = IORESOURCE_MEM, }, [1] = { |