diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2017-04-17 10:55:14 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2017-04-17 10:55:14 +0200 |
commit | 821596a50aba6873ff4ea8fdf2b1515638c3c8a3 (patch) | |
tree | df74b2e08494cc321e7752b191055a511c90ff97 /drivers/clocksource/timer-sp804.c | |
parent | 2886a734081ed31f3279550ea9d50ef1d84a84e6 (diff) | |
parent | 6f9c89000c3f771c47adacaca2df775a25f27205 (diff) | |
download | kernel_replicant_linux-821596a50aba6873ff4ea8fdf2b1515638c3c8a3.tar.gz kernel_replicant_linux-821596a50aba6873ff4ea8fdf2b1515638c3c8a3.tar.bz2 kernel_replicant_linux-821596a50aba6873ff4ea8fdf2b1515638c3c8a3.zip |
Merge branch 'clockevents/4.12' of https://git.linaro.org/people/daniel.lezcano/linux into timers/core
Pull clockevents updates from Daniel Lezcano
- Provide a framework to handle errata gracefuly for arm_arch_timer (Mark
Zyngier)
- Clarify the DT properties for the rockchip timer and add the clocksource as
an alternative to the bogus architected timer (Alexander Kochetkov)
- Rename the Gemini timer to Faraday timer fttmr010 and provide a specific
initialization for Gemini (Linus Walleij)
- Add missing newlines in the error message in the timers (Rafał Miłecki)
- Read the clock once and implement the delay timer on Orion (Russell King)
Diffstat (limited to 'drivers/clocksource/timer-sp804.c')
-rw-r--r-- | drivers/clocksource/timer-sp804.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clocksource/timer-sp804.c b/drivers/clocksource/timer-sp804.c index d07863388e05..2d575a8c0939 100644 --- a/drivers/clocksource/timer-sp804.c +++ b/drivers/clocksource/timer-sp804.c @@ -299,13 +299,13 @@ static int __init integrator_cp_of_init(struct device_node *np) base = of_iomap(np, 0); if (!base) { - pr_err("Failed to iomap"); + pr_err("Failed to iomap\n"); return -ENXIO; } clk = of_clk_get(np, 0); if (IS_ERR(clk)) { - pr_err("Failed to get clock"); + pr_err("Failed to get clock\n"); return PTR_ERR(clk); } |