xref: /linux/rust/helpers/time.c (revision 1664a671be46a0b0daf5250eb124d94a5501a64c)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/ktime.h>
4 
5 s64 rust_helper_ktime_to_us(const ktime_t kt)
6 {
7 	return ktime_to_us(kt);
8 }
9 
10 s64 rust_helper_ktime_to_ms(const ktime_t kt)
11 {
12 	return ktime_to_ms(kt);
13 }
14