diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2008-03-16 10:58:09 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2008-03-16 10:58:09 +0000 |
commit | 237fdd787b20699fc2c01387011b06a9ce746cfa (patch) | |
tree | 6564575d1252cf3bc48428a52fcc596c284e459b /sys/kern/kern_idle.c | |
parent | f48a417b24490b3bdb96ce9c6e4cb48b5dc82437 (diff) |
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
Notes
Notes:
svn path=/head/; revision=177253
Diffstat (limited to 'sys/kern/kern_idle.c')
-rw-r--r-- | sys/kern/kern_idle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_idle.c b/sys/kern/kern_idle.c index 953297bd4060..1d9b30297789 100644 --- a/sys/kern/kern_idle.c +++ b/sys/kern/kern_idle.c @@ -41,7 +41,7 @@ __FBSDID("$FreeBSD$"); #endif static void idle_setup(void *dummy); -SYSINIT(idle_setup, SI_SUB_SCHED_IDLE, SI_ORDER_FIRST, idle_setup, NULL) +SYSINIT(idle_setup, SI_SUB_SCHED_IDLE, SI_ORDER_FIRST, idle_setup, NULL); /* * Set up per-cpu idle process contexts. The AP's shouldn't be running or |