Skip to content
Snippets Groups Projects
Commit 4137b315 authored by Hans-Christian Egtvedt's avatar Hans-Christian Egtvedt
Browse files

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: default avatarHans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
parent 7bbf1d46
No related branches found
No related tags found
No related merge requests found
...@@ -1043,6 +1043,7 @@ void __init at32_map_usart(unsigned int hw_id, unsigned int line, int flags) ...@@ -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; data->regs = (void __iomem *)pdev->resource[0].start;
} }
pdev->id = line;
pdata = pdev->dev.platform_data; pdata = pdev->dev.platform_data;
pdata->num = line; pdata->num = line;
at32_usarts[line] = pdev; at32_usarts[line] = pdev;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment