Module Name:    src
Committed By:   jym
Date:           Tue Aug 17 22:24:05 UTC 2010

Modified Files:
        src/sys/arch/i386/i386: machdep.c

Log Message:
Use SYSCTL_DESCR()


To generate a diff of this commit:
cvs rdiff -u -r1.693 -r1.694 src/sys/arch/i386/i386/machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/i386/i386/machdep.c
diff -u src/sys/arch/i386/i386/machdep.c:1.693 src/sys/arch/i386/i386/machdep.c:1.694
--- src/sys/arch/i386/i386/machdep.c:1.693	Mon Aug 16 19:39:06 2010
+++ src/sys/arch/i386/i386/machdep.c	Tue Aug 17 22:24:04 2010
@@ -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 <sys/cdefs.h>
-__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 @@
 		       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);
 }

Reply via email to