From 877d7c65ba9b74233df6c9197fc39c770e809d02 Mon Sep 17 00:00:00 2001 From: rwatson Date: Sun, 16 Mar 2008 10:58:09 +0000 Subject: In keeping with style(9)'s recommendations on macros, use a ';' after each SYSINIT() macro invocation. This makes a number of lightweight C parsers much happier with the FreeBSD kernel source, including cflow's prcc and lxr. MFC after: 1 month Discussed with: imp, rink --- sys/pc98/pc98/machdep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/pc98') diff --git a/sys/pc98/pc98/machdep.c b/sys/pc98/pc98/machdep.c index 3599647..dd524c9 100644 --- a/sys/pc98/pc98/machdep.c +++ b/sys/pc98/pc98/machdep.c @@ -158,7 +158,7 @@ static int set_fpcontext(struct thread *td, const mcontext_t *mcp); static void set_fpregs_xmm(struct save87 *, struct savexmm *); static void fill_fpregs_xmm(struct savexmm *, struct save87 *); #endif /* CPU_ENABLE_SSE */ -SYSINIT(cpu, SI_SUB_CPU, SI_ORDER_FIRST, cpu_startup, NULL) +SYSINIT(cpu, SI_SUB_CPU, SI_ORDER_FIRST, cpu_startup, NULL); int need_pre_dma_flush; /* If 1, use wbinvd befor DMA transfer. */ int need_post_dma_flush; /* If 1, use invd after DMA transfer. */ @@ -2186,7 +2186,7 @@ spinlock_exit(void) #if defined(I586_CPU) && !defined(NO_F00F_HACK) static void f00f_hack(void *unused); -SYSINIT(f00f_hack, SI_SUB_INTRINSIC, SI_ORDER_FIRST, f00f_hack, NULL) +SYSINIT(f00f_hack, SI_SUB_INTRINSIC, SI_ORDER_FIRST, f00f_hack, NULL); static void f00f_hack(void *unused) -- cgit v1.1