aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra/board-paz00.c
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2011-08-08 17:01:05 -0400
committerOlof Johansson <olof@lixom.net>2011-08-09 15:08:07 -0400
commit11b3adb45da636a839bd2b7c300c616e0e2c38d6 (patch)
tree2a7d73f9fadc3875237aa8796b59da5fff4aa475 /arch/arm/mach-tegra/board-paz00.c
parent24810cb53c0c66eb2922117c6a53c64c3f7a07a6 (diff)
ARM: Tegra: Force PORT_TEGRA as the UART type
8250.c recently gained an explicit PORT_TEGRA port type. Specifically request this in all Tegra boards' UART platform data. Signed-off-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-tegra/board-paz00.c')
-rw-r--r--arch/arm/mach-tegra/board-paz00.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/board-paz00.c b/arch/arm/mach-tegra/board-paz00.c
index 51d847f7fca9..7630c239e7a9 100644
--- a/arch/arm/mach-tegra/board-paz00.c
+++ b/arch/arm/mach-tegra/board-paz00.c
@@ -50,7 +50,8 @@ static struct plat_serial8250_port debug_uart_platform_data[] = {
50 .membase = IO_ADDRESS(TEGRA_UARTA_BASE), 50 .membase = IO_ADDRESS(TEGRA_UARTA_BASE),
51 .mapbase = TEGRA_UARTA_BASE, 51 .mapbase = TEGRA_UARTA_BASE,
52 .irq = INT_UARTA, 52 .irq = INT_UARTA,
53 .flags = UPF_BOOT_AUTOCONF, 53 .flags = UPF_BOOT_AUTOCONF | UPF_FIXED_TYPE,
54 .type = PORT_TEGRA,
54 .iotype = UPIO_MEM, 55 .iotype = UPIO_MEM,
55 .regshift = 2, 56 .regshift = 2,
56 .uartclk = 216000000, 57 .uartclk = 216000000,
@@ -59,7 +60,8 @@ static struct plat_serial8250_port debug_uart_platform_data[] = {
59 .membase = IO_ADDRESS(TEGRA_UARTD_BASE), 60 .membase = IO_ADDRESS(TEGRA_UARTD_BASE),
60 .mapbase = TEGRA_UARTD_BASE, 61 .mapbase = TEGRA_UARTD_BASE,
61 .irq = INT_UARTD, 62 .irq = INT_UARTD,
62 .flags = UPF_BOOT_AUTOCONF, 63 .flags = UPF_BOOT_AUTOCONF | UPF_FIXED_TYPE,
64 .type = PORT_TEGRA,
63 .iotype = UPIO_MEM, 65 .iotype = UPIO_MEM,
64 .regshift = 2, 66 .regshift = 2,
65 .uartclk = 216000000, 67 .uartclk = 216000000,