From: Sergio Aguirre Date: Mon, 1 Mar 2010 18:17:15 +0000 (-0600) Subject: omap3: zoom 2/3: Change debugboard serial port id X-Git-Tag: v2.6.34-rc6~26^2~29^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fcbcea93abbe361e14dd458d0a5a3e9dadaa5ba9;p=karo-tx-linux.git omap3: zoom 2/3: Change debugboard serial port id This is now changed to PLAT8250_DEV_PLATFORM (= 0), because it's the only port that's going to be initialized in Zoom 2/3 boards. So, it doesn't make sense to keep the hardcoded 3 value anymore. Signed-off-by: Sergio Aguirre --- diff --git a/arch/arm/mach-omap2/board-zoom-debugboard.c b/arch/arm/mach-omap2/board-zoom-debugboard.c index bb4018b60642..e15d2e87cfc1 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 zoom_debugboard_serial_device = { .name = "serial8250", - .id = 3, + .id = PLAT8250_DEV_PLATFORM, .dev = { .platform_data = serial_platform_data, },