summaryrefslogtreecommitdiff
path: root/arch/s390/kernel/trace_clock.c
blob: 9ca568058cbcea5b8f37c5b460a13b6b75a99e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: GPL-2.0
#include <linux/trace_clock.h>
#include <linux/timex.h>
/*
 * trace_clock_s390_tod(): trace clock based on the s390 TOD clock
 *
 * Unlike the other clocks, this is not in nanoseconds.
 */
u64 notrace trace_clock_s390_tod(void)
{
	return get_tod_clock();
}