summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@armlinux.org.uk>2016-09-13 18:51:55 +0100
committerRussell King (Oracle) <rmk+kernel@armlinux.org.uk>2024-01-08 10:30:11 +0000
commit531a43d0ba3339fc35e0ac2108dac1dc57bc5ee4 (patch)
tree87a3bfa7f93c72cc6b22f1cfa16eb676ac6ba1e0 /arch
parentd95863254cdebccab66e770184d992f2898d5b97 (diff)
add sa11x0 uart clocks
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-sa1100/clock.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-sa1100/clock.c b/arch/arm/mach-sa1100/clock.c
index a104cfa4b123..d40ce6b0ae05 100644
--- a/arch/arm/mach-sa1100/clock.c
+++ b/arch/arm/mach-sa1100/clock.c
@@ -107,6 +107,9 @@ int __init sa11xx_clk_init(void)
return PTR_ERR(hw);
clk_hw_register_clkdev(hw, "OSTIMER0", NULL);
+ clk_hw_register_clkdev(hw, NULL, "sa11x0-uart.1");
+ clk_hw_register_clkdev(hw, NULL, "sa11x0-uart.2");
+ clk_hw_register_clkdev(hw, NULL, "sa11x0-uart.3");
hw = kzalloc(sizeof(*hw), GFP_KERNEL);
if (!hw)