summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2021-07-24 07:48:38 +0000
committerskrll <skrll@NetBSD.org>2021-07-24 07:48:38 +0000
commit8fdf05c1fc2014fb593b8b3f6f8b3efd4f13c480 (patch)
treed7dddfa4e38d4ab287ffa81e6a2118179c1ff2c9 /sys/dev
parent6289fb93d37499815a26a9f64287e5ac8fed4e6e (diff)
#include <sys/param.h> for COHERENCY_UNIT and some KNF while I'm here.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/dtv/dtv_device.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/dtv/dtv_device.c b/sys/dev/dtv/dtv_device.c
index f7af87bd1b0..0f61645de4b 100644
--- a/sys/dev/dtv/dtv_device.c
+++ b/sys/dev/dtv/dtv_device.c
@@ -1,4 +1,4 @@
-/* $NetBSD: dtv_device.c,v 1.12 2017/10/28 04:53:55 riastradh Exp $ */
+/* $NetBSD: dtv_device.c,v 1.13 2021/07/24 07:48:38 skrll Exp $ */
/*-
* Copyright (c) 2011 Jared D. McNeill <jmcneill@invisible.ca>
@@ -33,12 +33,13 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dtv_device.c,v 1.12 2017/10/28 04:53:55 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dtv_device.c,v 1.13 2021/07/24 07:48:38 skrll Exp $");
+#include <sys/param.h>
#include <sys/types.h>
+#include <sys/atomic.h>
#include <sys/conf.h>
#include <sys/device.h>
-#include <sys/atomic.h>
#include <sys/module.h>
#include <sys/poll.h>
#include <sys/select.h>