Module Name: src
Committed By: rin
Date: Wed Aug 7 10:51:57 UTC 2019
Modified Files:
src/sys/dev/rasops: rasops.c
Log Message:
Use _KERNEL_OPT.
To generate a diff of this commit:
cvs rdiff -u -r1.108 -r1.109 src/sys/dev/rasops/rasops.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/dev/rasops/rasops.c
diff -u src/sys/dev/rasops/rasops.c:1.108 src/sys/dev/rasops/rasops.c:1.109
--- src/sys/dev/rasops/rasops.c:1.108 Fri Aug 2 23:24:37 2019
+++ src/sys/dev/rasops/rasops.c Wed Aug 7 10:51:57 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: rasops.c,v 1.108 2019/08/02 23:24:37 rin Exp $ */
+/* $NetBSD: rasops.c,v 1.109 2019/08/07 10:51:57 rin Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -30,11 +30,14 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.108 2019/08/02 23:24:37 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.109 2019/08/07 10:51:57 rin Exp $");
+#ifdef _KERNEL_OPT
#include "opt_rasops.h"
-#include "rasops_glue.h"
#include "opt_wsmsgattrs.h"
+#endif
+
+#include "rasops_glue.h"
#include <sys/param.h>
#include <sys/bswap.h>