From: Hans-Christian Egtvedt Date: Wed, 8 Jun 2011 08:47:25 +0000 (+0200) Subject: avr32/at32ap: fix mapping of platform device id for USART X-Git-Tag: v3.0-rc4~95^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4137b31566fd112c8e2d9d4701de5e7a000bcc2d;p=profile%2Fivi%2Fkernel-x86-ivi.git avr32/at32ap: fix mapping of platform device id for USART This patch will fix the mapping of the platform device id when mapping USART peripheral ID to UART platform device id. Not setting the platform device id will in most cases (when you map USART > 0 to UART 0) make the console not available. Signed-off-by: Hans-Christian Egtvedt --- diff --git a/arch/avr32/mach-at32ap/at32ap700x.c b/arch/avr32/mach-at32ap/at32ap700x.c index 1b7ad97..7fbf0dc 100644 --- a/arch/avr32/mach-at32ap/at32ap700x.c +++ b/arch/avr32/mach-at32ap/at32ap700x.c @@ -1043,6 +1043,7 @@ void __init at32_map_usart(unsigned int hw_id, unsigned int line, int flags) data->regs = (void __iomem *)pdev->resource[0].start; } + pdev->id = line; pdata = pdev->dev.platform_data; pdata->num = line; at32_usarts[line] = pdev;