ARM: bcm2835: Fix typo in the error message
authorDomenico Andreoli <domenico.andreoli@linux.com>
Sat, 20 Oct 2012 01:35:28 +0000 (03:35 +0200)
committerStephen Warren <swarren@wwwdotorg.org>
Fri, 26 Oct 2012 02:28:17 +0000 (20:28 -0600)
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>
drivers/clk/clk-bcm2835.c

index 67ad16b..59e0fd8 100644 (file)
@@ -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");
 }