summaryrefslogtreecommitdiff
path: root/compat/backport-4.18.c
diff options
context:
space:
mode:
authorDominik Sliwa <dominik.sliwa@toradex.com>2019-03-04 12:01:54 +0100
committerDominik Sliwa <dominik.sliwa@toradex.com>2019-03-04 12:01:54 +0100
commit348fa3f6871f56a37dcd16c99ca98118c6d79a38 (patch)
tree6fcae7785bae4ffb838fd6549f7d01ba6abf0763 /compat/backport-4.18.c
Backports v4.19.24
Backports generated by toradex backports 515a1fa55cda2b1d952872e1786857481bd54fcc against mainline kernel tag v4.19.24 Signed-off-by: Dominik Sliwa <dominik.sliwa@toradex.com>
Diffstat (limited to 'compat/backport-4.18.c')
-rw-r--r--compat/backport-4.18.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/compat/backport-4.18.c b/compat/backport-4.18.c
new file mode 100644
index 0000000..a08fd7c
--- /dev/null
+++ b/compat/backport-4.18.c
@@ -0,0 +1,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