From 4d0d2a4c7ba9402661646c1450799cdd4040b11c Mon Sep 17 00:00:00 2001 From: jym Date: Tue, 17 Aug 2010 22:24:04 +0000 Subject: [PATCH] Use SYSCTL_DESCR() --- sys/arch/i386/i386/machdep.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 56c7b659780d..cd5160dc5ccf 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: machdep.c,v 1.693 2010/08/16 19:39:06 jym Exp $ */ +/* $NetBSD: machdep.c,v 1.694 2010/08/17 22:24:04 jym Exp $ */ /*- * Copyright (c) 1996, 1997, 1998, 2000, 2004, 2006, 2008, 2009 @@ -67,7 +67,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.693 2010/08/16 19:39:06 jym Exp $"); +__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.694 2010/08/17 22:24:04 jym Exp $"); #include "opt_beep.h" #include "opt_compat_ibcs2.h" @@ -693,7 +693,8 @@ SYSCTL_SETUP(sysctl_machdep_setup, "sysctl machdep subtree setup") CTL_MACHDEP, CTL_CREATE, CTL_EOL); sysctl_createv(clog, 0, NULL, NULL, CTLFLAG_PERMANENT, - CTLTYPE_INT, "pae", "Whether the kernel uses PAE", + CTLTYPE_INT, "pae", + SYSCTL_DESCR("Whether the kernel uses PAE"), NULL, 0, &i386_use_pae, 0, CTL_MACHDEP, CTL_CREATE, CTL_EOL); }