Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 298a5df4 authored by Tony Breeds's avatar Tony Breeds Committed by Linus Torvalds
Browse files

Fix "no_sync_cmos_clock" logic inversion in kernel/time/ntp.c



Seems to me that this timer will only get started on platforms that say
they don't want it?

Signed-off-by: default avatarTony Breeds <tony@bakeyournoodle.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Gabriel Paubert <paubert@iram.es>
Cc: Zachary Amsden <zach@vmware.com>
Acked-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: John Stultz <johnstul@us.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 0e2f6db8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -226,7 +226,7 @@ static void sync_cmos_clock(unsigned long dummy)

static void notify_cmos_timer(void)
{
	if (no_sync_cmos_clock)
	if (!no_sync_cmos_clock)
		mod_timer(&sync_cmos_timer, jiffies + 1);
}