ARM: bcm2835: Fix typo in the error message

Fix typo in message reported when unable to lookup the uart1 clock.

Signed-off-by: Domenico Andreoli <domenico.andreoli@linux.com>
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
This commit is contained in:
Domenico Andreoli 2012-10-20 03:35:28 +02:00 коммит произвёл Stephen Warren
Родитель dd3c7548b9
Коммит 686ea5851e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -55,5 +55,5 @@ void __init bcm2835_init_clocks(void)
pr_err("uart1_pclk not registered\n");
ret = clk_register_clkdev(clk, NULL, "20215000.uart");
if (ret)
pr_err("uart0_pclk alias not registered\n");
pr_err("uart1_pclk alias not registered\n");
}