mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
The generic vDSO provides a lot common functionality shared between different architectures. SPARC is the last architecture not using it, preventing some necessary code cleanup. Make use of the generic infrastructure. Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@kernel.org> Tested-by: Andreas Larsson <andreas@gaisler.com> Reviewed-by: Andreas Larsson <andreas@gaisler.com> Acked-by: Andreas Larsson <andreas@gaisler.com> Link: https://patch.msgid.link/20260304-vdso-sparc64-generic-2-v6-10-d8eb3b0e1410@linutronix.de
11 lines
246 B
C
11 lines
246 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ASM_VDSO_CLOCKSOURCE_H
|
|
#define __ASM_VDSO_CLOCKSOURCE_H
|
|
|
|
/* VDSO clocksources */
|
|
#define VDSO_ARCH_CLOCKMODES \
|
|
VDSO_CLOCKMODE_TICK, \
|
|
VDSO_CLOCKMODE_STICK
|
|
|
|
#endif /* __ASM_VDSO_CLOCKSOURCE_H */
|