Browse Source

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>
Domenico Andreoli 12 years ago
parent
commit
686ea5851e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/clk/clk-bcm2835.c

+ 1 - 1
drivers/clk/clk-bcm2835.c

@@ -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");
 }