mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-23 10:12:24 +00:00
The struct arch_vdso_data is only about vdso time data. So rename it to arch_vdso_time_data to make it obvious. Non time-related data will be migrated out of these structs soon. Signed-off-by: Nam Cao <namcao@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Heiko Carstens <hca@linux.ibm.com> # s390 Link: https://lore.kernel.org/all/20241010-vdso-generic-base-v1-28-b64f0842d512@linutronix.de
13 lines
264 B
C
13 lines
264 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_steering_delta;
|
|
__u64 tod_steering_end;
|
|
};
|
|
|
|
#endif /* __S390_ASM_VDSO_TIME_DATA_H */
|