[SERIAL] dz: Use CKSEG1ADDR to setup mappings.

Use physical addresses at the interface level, letting drivers remap
them as appropriate.

Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
Ralf Baechle 2005-11-12 22:00:27 +00:00 committed by Russell King
parent fd8c597214
commit 46677736be
1 changed files with 2 additions and 2 deletions

View File

@ -645,9 +645,9 @@ static void __init dz_init_ports(void)
if (mips_machtype == MACH_DS23100 ||
mips_machtype == MACH_DS5100)
base = (unsigned long) KN01_DZ11_BASE;
base = CKSEG1ADDR(KN01_SLOT_BASE + KN01_DZ11);
else
base = (unsigned long) KN02_DZ11_BASE;
base = CKSEG1ADDR(KN02_SLOT_BASE + KN02_DZ11);
for (i = 0, dport = dz_ports; i < DZ_NB_PORT; i++, dport++) {
spin_lock_init(&dport->port.lock);