]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
clocksource: h8300_timer8: Don't reset rate in ->set_state_oneshot()
authorNicolai Stange <nicstange@gmail.com>
Mon, 6 Feb 2017 21:12:03 +0000 (22:12 +0100)
committerJohn Stultz <john.stultz@linaro.org>
Thu, 23 Mar 2017 19:14:04 +0000 (12:14 -0700)
With the upcoming NTP correction related rate adjustments to be implemented
in the clockevents core, the latter needs to get informed about every rate
change of a clockevent device made after its registration.

Currently, h8300_timer8 violates this requirement in that it registers its
clockevent device with the correct rate, but resets its ->mult and ->rate
values in timer8_clock_event_start(), called from its ->set_state_oneshot()
function.

It seems like
  commit 4633f4cac85a ("clocksource/drivers/h8300: Cleanup startup and
                        remove module code."),
which introduced the rate initialization at registration, missed to remove
the manual setting of ->mult and ->shift from timer8_clock_event_start().

Purge the setting of ->mult, ->shift, ->min_delta_ns and ->max_delta_ns
from timer8_clock_event_start().

Signed-off-by: Nicolai Stange <nicstange@gmail.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
drivers/clocksource/h8300_timer8.c

index 546bb180f5a4481d6d13f7b68e37537940c3e795..804c489531d692e96a5166c49f443f8aa18f3aca 100644 (file)
@@ -101,15 +101,7 @@ static inline struct timer8_priv *ced_to_priv(struct clock_event_device *ced)
 
 static void timer8_clock_event_start(struct timer8_priv *p, unsigned long delta)
 {
-       struct clock_event_device *ced = &p->ced;
-
        timer8_start(p);
-
-       ced->shift = 32;
-       ced->mult = div_sc(p->rate, NSEC_PER_SEC, ced->shift);
-       ced->max_delta_ns = clockevent_delta2ns(0xffff, ced);
-       ced->min_delta_ns = clockevent_delta2ns(0x0001, ced);
-
        timer8_set_next(p, delta);
 }