diff options
author | phk <phk@FreeBSD.org> | 2000-07-04 11:25:35 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2000-07-04 11:25:35 +0000 |
commit | e5de271d472634538e30a52ae173ebe1213162fd (patch) | |
tree | a8ec5eb96610f0059453eefc245a1c07a6bb853f /sys/pc98/cbus | |
parent | 1624e20f39888e846831b8a8457c919d0cfa54c9 (diff) | |
download | FreeBSD-src-e5de271d472634538e30a52ae173ebe1213162fd.zip FreeBSD-src-e5de271d472634538e30a52ae173ebe1213162fd.tar.gz |
Previous commit changing SYSCTL_HANDLER_ARGS violated KNF.
Pointed out by: bde
Diffstat (limited to 'sys/pc98/cbus')
-rw-r--r-- | sys/pc98/cbus/clock.c | 4 | ||||
-rw-r--r-- | sys/pc98/cbus/pcrtc.c | 4 | ||||
-rw-r--r-- | sys/pc98/cbus/sio.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/sys/pc98/cbus/clock.c b/sys/pc98/cbus/clock.c index 1dcde71..b0e63bb 100644 --- a/sys/pc98/cbus/clock.c +++ b/sys/pc98/cbus/clock.c @@ -1486,7 +1486,7 @@ setstatclockrate(int newhz) } static int -sysctl_machdep_i8254_freq (SYSCTL_HANDLER_ARGS) +sysctl_machdep_i8254_freq(SYSCTL_HANDLER_ARGS) { int error; u_int freq; @@ -1511,7 +1511,7 @@ SYSCTL_PROC(_machdep, OID_AUTO, i8254_freq, CTLTYPE_INT | CTLFLAG_RW, 0, sizeof(u_int), sysctl_machdep_i8254_freq, "I", ""); static int -sysctl_machdep_tsc_freq (SYSCTL_HANDLER_ARGS) +sysctl_machdep_tsc_freq(SYSCTL_HANDLER_ARGS) { int error; u_int freq; diff --git a/sys/pc98/cbus/pcrtc.c b/sys/pc98/cbus/pcrtc.c index 1dcde71..b0e63bb 100644 --- a/sys/pc98/cbus/pcrtc.c +++ b/sys/pc98/cbus/pcrtc.c @@ -1486,7 +1486,7 @@ setstatclockrate(int newhz) } static int -sysctl_machdep_i8254_freq (SYSCTL_HANDLER_ARGS) +sysctl_machdep_i8254_freq(SYSCTL_HANDLER_ARGS) { int error; u_int freq; @@ -1511,7 +1511,7 @@ SYSCTL_PROC(_machdep, OID_AUTO, i8254_freq, CTLTYPE_INT | CTLFLAG_RW, 0, sizeof(u_int), sysctl_machdep_i8254_freq, "I", ""); static int -sysctl_machdep_tsc_freq (SYSCTL_HANDLER_ARGS) +sysctl_machdep_tsc_freq(SYSCTL_HANDLER_ARGS) { int error; u_int freq; diff --git a/sys/pc98/cbus/sio.c b/sys/pc98/cbus/sio.c index 3f23590..6b99f99 100644 --- a/sys/pc98/cbus/sio.c +++ b/sys/pc98/cbus/sio.c @@ -878,7 +878,7 @@ static Port_t likely_esp_ports[] = { 0x140, 0x180, 0x280, 0 }; */ static int -sysctl_machdep_comdefaultrate (SYSCTL_HANDLER_ARGS) +sysctl_machdep_comdefaultrate(SYSCTL_HANDLER_ARGS) { int error, s; speed_t newspeed; |