Module Name: src
Committed By: apb
Date: Sat Jul 16 22:41:59 UTC 2011
Modified Files:
src/sys/dev/dtv: dtv_math.c
Log Message:
Reinstate #include <dev/dtv/dtvif.h> which was incorrectly
removed in the previous commit.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/dtv/dtv_math.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_math.c
diff -u src/sys/dev/dtv/dtv_math.c:1.3 src/sys/dev/dtv/dtv_math.c:1.4
--- src/sys/dev/dtv/dtv_math.c:1.3 Sat Jul 16 22:30:26 2011
+++ src/sys/dev/dtv/dtv_math.c Sat Jul 16 22:41:59 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: dtv_math.c,v 1.3 2011/07/16 22:30:26 apb Exp $ */
+/* $NetBSD: dtv_math.c,v 1.4 2011/07/16 22:41:59 apb Exp $ */
/*-
* Copyright (c) 2011 Alan Barrett <[email protected]>
@@ -27,11 +27,13 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dtv_math.c,v 1.3 2011/07/16 22:30:26 apb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dtv_math.c,v 1.4 2011/07/16 22:41:59 apb Exp $");
#include <sys/types.h>
#include <sys/bitops.h>
+#include <dev/dtv/dtvif.h>
+
/*
* dtv_intlog10 -- return an approximation to log10(x) * 1<<24,
* using integer arithmetic.