Updates for timekeeping, timers and related drivers:

 Core:

  - Early boot support for the NMI safe timekeeper by utilizing
    local_clock() up to the point where timekeeping is initialized. This
    allows printk() to store multiple timestamps in the ringbuffer which is
    useful for coordinating dmesg information across a fleet of machines.

  - Provide a multi-timestamp accessor for printk()

  - Make timer init more robust by checking for invalid timer flags.

  - Comma vs. semicolon fixes

 Drivers:

  - Support for new platforms in existing drivers (SP804 and Renesas CMT)

  - Comma vs. semicolon fixes
clocksource/drivers/armada-370-xp: Use semicolons rather than commas to separate statements

Replace commas with semicolons.  What is done is essentially described by
the following Coccinelle semantic patch (http://coccinelle.lip6.fr/):

// <smpl>
@@ expression e1,e2; @@
e1
-,
+;
e2
... when any
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/1601233948-11629-17-git-send-email-Julia.Lawall@inria.fr
1 file changed