mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 07:39:49 +02:00
Currently tested on Zoom2 and Beagle board. Please test if you have an OMAP3 board! The source tree for this recipe is the latest and greatest power management code for OMAP3. You can find it at http://git.kernel.org/?p=linux/kernel/git/khilman/linux-omap-pm.git;a=summary Signed-off-by: Mike Turquette <mturquette@ti.com>
30 lines
1.0 KiB
Diff
30 lines
1.0 KiB
Diff
From 14b507c8e7fc09e91297a82819296533ab35d8ae Mon Sep 17 00:00:00 2001
|
|
From: Kevin Hilman <khilman@deeprootsystems.com>
|
|
Date: Mon, 20 Jul 2009 16:12:32 -0700
|
|
Subject: [PATCH 6/8] OMAP3: Zoom2: ext UART needs plaform_device.id >= 3
|
|
|
|
The on-chip UARTs now have individual platform_device.id numbers,
|
|
so for the external UART to register properly, it needs an id >= 3.
|
|
|
|
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
|
|
---
|
|
arch/arm/mach-omap2/board-zoom-debugboard.c | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/arch/arm/mach-omap2/board-zoom-debugboard.c b/arch/arm/mach-omap2/board-zoom-debugboard.c
|
|
index f546063..e0948c9 100644
|
|
--- a/arch/arm/mach-omap2/board-zoom-debugboard.c
|
|
+++ b/arch/arm/mach-omap2/board-zoom-debugboard.c
|
|
@@ -96,7 +96,7 @@ static struct plat_serial8250_port serial_platform_data[] = {
|
|
|
|
static struct platform_device zoom2_debugboard_serial_device = {
|
|
.name = "serial8250",
|
|
- .id = PLAT8250_DEV_PLATFORM1,
|
|
+ .id = 3,
|
|
.dev = {
|
|
.platform_data = serial_platform_data,
|
|
},
|
|
--
|
|
1.6.3.2
|
|
|