summaryrefslogtreecommitdiff
path: root/compat/backport-4.18.c
blob: a08fd7c2ffade02aa100af4bf0542600980c77ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (C) 2018 Intel Corporation
 */

#include <linux/hrtimer.h>

#if LINUX_VERSION_IS_GEQ(3,4,0)
time64_t ktime_get_boottime_seconds(void)
{
	return ktime_divns(ktime_get_boottime(), NSEC_PER_SEC);
}
EXPORT_SYMBOL_GPL(ktime_get_boottime_seconds);
#endif