[RFC PATCH] hv_utils: HOST_TIMESYNC_DELAY_THRESH can be static

From: kernel test robot
Date: Wed Aug 19 2020 - 18:20:15 EST



Signed-off-by: kernel test robot <lkp@xxxxxxxxx>
---
hv_util.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hv/hv_util.c b/drivers/hv/hv_util.c
index 1357861fd8aee8..35d126e6f012db 100644
--- a/drivers/hv/hv_util.c
+++ b/drivers/hv/hv_util.c
@@ -290,7 +290,7 @@ static inline u64 reftime_to_ns(u64 reftime)
/*
* Hard coded threshold for host timesync delay: 600 seconds
*/
-const u64 HOST_TIMESYNC_DELAY_THRESH = 600 * NSEC_PER_SEC;
+static const u64 HOST_TIMESYNC_DELAY_THRESH = 600 * NSEC_PER_SEC;

static int hv_get_adj_host_time(struct timespec64 *ts)
{