Module Name: src
Committed By: skrll
Date: Sat Jul 24 07:48:38 UTC 2021
Modified Files:
src/sys/dev/dtv: dtv_device.c
Log Message:
#include <sys/param.h> for COHERENCY_UNIT and some KNF while I'm here.
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/dev/dtv/dtv_device.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/dtv/dtv_device.c
diff -u src/sys/dev/dtv/dtv_device.c:1.12 src/sys/dev/dtv/dtv_device.c:1.13
--- src/sys/dev/dtv/dtv_device.c:1.12 Sat Oct 28 04:53:55 2017
+++ src/sys/dev/dtv/dtv_device.c Sat Jul 24 07:48:38 2021
@@ -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 <[email protected]>
@@ -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>