summaryrefslogtreecommitdiffstats
path: root/sys/pc98
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2008-03-16 10:58:09 +0000
committerrwatson <rwatson@FreeBSD.org>2008-03-16 10:58:09 +0000
commit877d7c65ba9b74233df6c9197fc39c770e809d02 (patch)
tree6564575d1252cf3bc48428a52fcc596c284e459b /sys/pc98
parente16eb855ef66b817fb04637d522ca52a5e5b5163 (diff)
downloadFreeBSD-src-877d7c65ba9b74233df6c9197fc39c770e809d02.zip
FreeBSD-src-877d7c65ba9b74233df6c9197fc39c770e809d02.tar.gz
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
Diffstat (limited to 'sys/pc98')
-rw-r--r--sys/pc98/pc98/machdep.c4
1 files changed, 2 insertions, 2 deletions
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)
OpenPOWER on IntegriCloud