ntp: Fix prototype in the !CONFIG_GENERIC_CMOS_UPDATE case
ANBZ: #9626 commit3cabca87b3
upstream In the !CONFIG_GENERIC_CMOS_UPDATE case the update_persistent_clock64() function gets defined as a stub in ntp.c - make the prototype in <linux/timekeeping.h> conditional on CONFIG_GENERIC_CMOS_UPDATE as well. Fixes:76e87d96b3
("ntp: Consolidate the RTC update implementation") Signed-off-by: Ingo Molnar <mingo@kernel.org> Acked-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Guanjun <guanjun@linux.alibaba.com> Reviewed-by: Artie Ding <artie.ding@linux.alibaba.com> Reviewed-by: Guixin Liu <kanie@linux.alibaba.com> Link: https://gitee.com/anolis/cloud-kernel/pulls/3591
This commit is contained in:
parent
ccec557fb5
commit
db2f4a63dd
|
@ -306,6 +306,8 @@ extern int persistent_clock_is_local;
|
|||
extern void read_persistent_clock64(struct timespec64 *ts);
|
||||
void read_persistent_wall_and_boot_offset(struct timespec64 *wall_clock,
|
||||
struct timespec64 *boot_offset);
|
||||
#ifdef CONFIG_GENERIC_CMOS_UPDATE
|
||||
extern int update_persistent_clock64(struct timespec64 now);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue