The branch stable/14 has been updated by zlei: URL: https://cgit.FreeBSD.org/src/commit/?id=d88ccbddc7c7426b8956b27d9335ce503815d24e
commit d88ccbddc7c7426b8956b27d9335ce503815d24e Author: Zhenlei Huang <[email protected]> AuthorDate: 2025-10-13 10:12:37 +0000 Commit: Zhenlei Huang <[email protected]> CommitDate: 2026-01-31 18:25:07 +0000 x86/xen: Use proper prototype for SYSINIT functions MFC after: 1 week (cherry picked from commit c8e077e57b2535b840d391f3217d00465b0514c4) (cherry picked from commit 871a335f3e7dcc8edcada353664ca6b40ae491a1) --- sys/x86/xen/xen_apic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/x86/xen/xen_apic.c b/sys/x86/xen/xen_apic.c index 1a28269e5865..507f21cba3f8 100644 --- a/sys/x86/xen/xen_apic.c +++ b/sys/x86/xen/xen_apic.c @@ -334,7 +334,7 @@ xen_cpu_ipi_init(int cpu) } static void -xen_setup_cpus(void) +xen_setup_cpus(void *dummy __unused) { uint32_t regs[4]; int i;
