mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
Remove the in-kernel time steering in favour of the new ptp s390 driver, which allows the kernel clock to be steered more precise. Signed-off-by: Sven Schnelle <svens@linux.ibm.com> Reviewed-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
12 lines
230 B
C
12 lines
230 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __S390_ASM_VDSO_TIME_DATA_H
|
|
#define __S390_ASM_VDSO_TIME_DATA_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct arch_vdso_time_data {
|
|
__s64 tod_delta;
|
|
};
|
|
|
|
#endif /* __S390_ASM_VDSO_TIME_DATA_H */
|