diff options
author | Alexander Schulz <alex@shark-linux.de> | 2005-07-16 12:17:18 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-07-16 12:17:18 -0400 |
commit | b7523418f6af9093c462341c08c2233f44f7a28d (patch) | |
tree | b44cc3d485eec69e5c0a29f0404b736fb015b2c7 /arch/arm/mach-shark | |
parent | 878cf4e1c7be6bffde3ace888a65ac3d43c127bb (diff) |
[PATCH] ARM: 2815/1: Shark: new defconfig, fixes with __io and serial ports
Patch from Alexander Schulz
This patch brings a new default config file for the shark and
fixes a compilation issue with io addressing and a runtime
problem with the serial ports, where I corrected a wrong
regshift value.
These are all shark specific files so I hope it is ok to
put them in one patch.
Signed-off-by: Alexander Schulz <alex@shark-linux.de>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-shark')
-rw-r--r-- | arch/arm/mach-shark/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-shark/core.c b/arch/arm/mach-shark/core.c index 726445895b5c..e737eae4521f 100644 --- a/arch/arm/mach-shark/core.c +++ b/arch/arm/mach-shark/core.c | |||
@@ -24,7 +24,7 @@ static struct plat_serial8250_port serial_platform_data[] = { | |||
24 | .iobase = 0x3f8, | 24 | .iobase = 0x3f8, |
25 | .irq = 4, | 25 | .irq = 4, |
26 | .uartclk = 1843200, | 26 | .uartclk = 1843200, |
27 | .regshift = 2, | 27 | .regshift = 0, |
28 | .iotype = UPIO_PORT, | 28 | .iotype = UPIO_PORT, |
29 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, | 29 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, |
30 | }, | 30 | }, |
@@ -32,7 +32,7 @@ static struct plat_serial8250_port serial_platform_data[] = { | |||
32 | .iobase = 0x2f8, | 32 | .iobase = 0x2f8, |
33 | .irq = 3, | 33 | .irq = 3, |
34 | .uartclk = 1843200, | 34 | .uartclk = 1843200, |
35 | .regshift = 2, | 35 | .regshift = 0, |
36 | .iotype = UPIO_PORT, | 36 | .iotype = UPIO_PORT, |
37 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, | 37 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, |
38 | }, | 38 | }, |