mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-29 15:06:30 -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> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://patch.msgid.link/20260105110520.21356-11-jgross@suse.com
15 lines
267 B
C
15 lines
267 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_RISCV_PARAVIRT_H
|
|
#define _ASM_RISCV_PARAVIRT_H
|
|
|
|
#ifdef CONFIG_PARAVIRT
|
|
|
|
int __init pv_time_init(void);
|
|
|
|
#else
|
|
|
|
#define pv_time_init() do {} while (0)
|
|
|
|
#endif /* CONFIG_PARAVIRT */
|
|
#endif /* _ASM_RISCV_PARAVIRT_H */
|