diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-10-23 14:21:39 -0400 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2012-11-16 14:22:16 -0500 |
commit | 58664f90525f9f1cef63167ee9ae3d6100f58494 (patch) | |
tree | 71f2ece79bc4608e5dde2422ab460570145e8a6d | |
parent | 73368ba0e168f28ec0b3e689bd428edc92505b62 (diff) |
ARM: timer: fix checkpatch warnings
This prevents checkpatch complaining when this file is moved in a later
patch.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
-rw-r--r-- | arch/arm/mach-tegra/timer.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/arm/mach-tegra/timer.c b/arch/arm/mach-tegra/timer.c index 6ff50353651..afcd108f0f2 100644 --- a/arch/arm/mach-tegra/timer.c +++ b/arch/arm/mach-tegra/timer.c | |||
@@ -184,8 +184,7 @@ static void __init tegra_init_timer(void) | |||
184 | 184 | ||
185 | clk = clk_get_sys("timer", NULL); | 185 | clk = clk_get_sys("timer", NULL); |
186 | if (IS_ERR(clk)) { | 186 | if (IS_ERR(clk)) { |
187 | pr_warn("Unable to get timer clock." | 187 | pr_warn("Unable to get timer clock. Assuming 12Mhz input clock.\n"); |
188 | " Assuming 12Mhz input clock.\n"); | ||
189 | rate = 12000000; | 188 | rate = 12000000; |
190 | } else { | 189 | } else { |
191 | clk_prepare_enable(clk); | 190 | clk_prepare_enable(clk); |
@@ -223,13 +222,13 @@ static void __init tegra_init_timer(void) | |||
223 | 222 | ||
224 | if (clocksource_mmio_init(timer_reg_base + TIMERUS_CNTR_1US, | 223 | if (clocksource_mmio_init(timer_reg_base + TIMERUS_CNTR_1US, |
225 | "timer_us", 1000000, 300, 32, clocksource_mmio_readl_up)) { | 224 | "timer_us", 1000000, 300, 32, clocksource_mmio_readl_up)) { |
226 | printk(KERN_ERR "Failed to register clocksource\n"); | 225 | pr_err("Failed to register clocksource\n"); |
227 | BUG(); | 226 | BUG(); |
228 | } | 227 | } |
229 | 228 | ||
230 | ret = setup_irq(tegra_timer_irq.irq, &tegra_timer_irq); | 229 | ret = setup_irq(tegra_timer_irq.irq, &tegra_timer_irq); |
231 | if (ret) { | 230 | if (ret) { |
232 | printk(KERN_ERR "Failed to register timer IRQ: %d\n", ret); | 231 | pr_err("Failed to register timer IRQ: %d\n", ret); |
233 | BUG(); | 232 | BUG(); |
234 | } | 233 | } |
235 | 234 | ||