summaryrefslogtreecommitdiff
path: root/rust/helpers/time.c
blob: 3d31473bce08ff9661ec84a8a57a19540c6c5412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: GPL-2.0

#include <linux/ktime.h>

s64 rust_helper_ktime_to_us(const ktime_t kt)
{
	return ktime_to_us(kt);
}

s64 rust_helper_ktime_to_ms(const ktime_t kt)
{
	return ktime_to_ms(kt);
}