mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-29 04:34:45 -04:00
Remove the arch-specific variant of paravirt_steal_clock() and use the common one instead. Signed-off-by: Juergen Gross <jgross@suse.com> Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de> Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://patch.msgid.link/20260105110520.21356-9-jgross@suse.com
16 lines
237 B
C
16 lines
237 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_ARM64_PARAVIRT_H
|
|
#define _ASM_ARM64_PARAVIRT_H
|
|
|
|
#ifdef CONFIG_PARAVIRT
|
|
|
|
int __init pv_time_init(void);
|
|
|
|
#else
|
|
|
|
#define pv_time_init() do {} while (0)
|
|
|
|
#endif // CONFIG_PARAVIRT
|
|
|
|
#endif
|