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/dev | |
| parent | f48a417b24490b3bdb96ce9c6e4cb48b5dc82437 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ofw/ofw_console.c | 2 | ||||
| -rw-r--r-- | sys/dev/syscons/sysmouse.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ofw/ofw_console.c b/sys/dev/ofw/ofw_console.c index 7d6f5ebd9e7e..154bcc5228cf 100644 --- a/sys/dev/ofw/ofw_console.c +++ b/sys/dev/ofw/ofw_console.c @@ -105,7 +105,7 @@ cn_drvinit(void *unused) } } -SYSINIT(cndev, SI_SUB_CONFIGURE, SI_ORDER_MIDDLE, cn_drvinit, NULL) +SYSINIT(cndev, SI_SUB_CONFIGURE, SI_ORDER_MIDDLE, cn_drvinit, NULL); static int stdin; static int stdout; diff --git a/sys/dev/syscons/sysmouse.c b/sys/dev/syscons/sysmouse.c index fa89a23f521b..35d761b2bd6b 100644 --- a/sys/dev/syscons/sysmouse.c +++ b/sys/dev/syscons/sysmouse.c @@ -245,7 +245,7 @@ sm_attach_mouse(void *unused) /* sysmouse doesn't have scr_stat */ } -SYSINIT(sysmouse, SI_SUB_DRIVERS, SI_ORDER_MIDDLE, sm_attach_mouse, NULL) +SYSINIT(sysmouse, SI_SUB_DRIVERS, SI_ORDER_MIDDLE, sm_attach_mouse, NULL); int sysmouse_event(mouse_info_t *info) |
