summaryrefslogtreecommitdiffstats
path: root/sys/alpha
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2000-07-04 11:25:35 +0000
committerphk <phk@FreeBSD.org>2000-07-04 11:25:35 +0000
commite5de271d472634538e30a52ae173ebe1213162fd (patch)
treea8ec5eb96610f0059453eefc245a1c07a6bb853f /sys/alpha
parent1624e20f39888e846831b8a8457c919d0cfa54c9 (diff)
downloadFreeBSD-src-e5de271d472634538e30a52ae173ebe1213162fd.zip
FreeBSD-src-e5de271d472634538e30a52ae173ebe1213162fd.tar.gz
Previous commit changing SYSCTL_HANDLER_ARGS violated KNF.
Pointed out by: bde
Diffstat (limited to 'sys/alpha')
-rw-r--r--sys/alpha/alpha/machdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/alpha/alpha/machdep.c b/sys/alpha/alpha/machdep.c
index 89195b7..4ec9ba5 100644
--- a/sys/alpha/alpha/machdep.c
+++ b/sys/alpha/alpha/machdep.c
@@ -199,7 +199,7 @@ int ncpus; /* number of cpus */
vm_offset_t phys_avail[10];
static int
-sysctl_hw_physmem (SYSCTL_HANDLER_ARGS)
+sysctl_hw_physmem(SYSCTL_HANDLER_ARGS)
{
int error = sysctl_handle_int(oidp, 0, alpha_ptob(physmem), req);
return (error);
@@ -209,7 +209,7 @@ SYSCTL_PROC(_hw, HW_PHYSMEM, physmem, CTLTYPE_INT|CTLFLAG_RD,
0, 0, sysctl_hw_physmem, "I", "");
static int
-sysctl_hw_usermem (SYSCTL_HANDLER_ARGS)
+sysctl_hw_usermem(SYSCTL_HANDLER_ARGS)
{
int error = sysctl_handle_int(oidp, 0,
alpha_ptob(physmem - cnt.v_wire_count), req);
@@ -2011,7 +2011,7 @@ bad:
}
static int
-sysctl_machdep_adjkerntz (SYSCTL_HANDLER_ARGS)
+sysctl_machdep_adjkerntz(SYSCTL_HANDLER_ARGS)
{
int error;
error = sysctl_handle_int(oidp, oidp->oid_arg1, oidp->oid_arg2,
OpenPOWER on IntegriCloud