Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 686ea585 authored by Domenico Andreoli's avatar Domenico Andreoli Committed by Stephen Warren
Browse files

ARM: bcm2835: Fix typo in the error message



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

Signed-off-by: default avatarDomenico Andreoli <domenico.andreoli@linux.com>
Signed-off-by: default avatarStephen Warren <swarren@wwwdotorg.org>
parent dd3c7548
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");
}