Module Name: src
Committed By: thorpej
Date: Wed Jul 24 05:47:40 UTC 2019
Modified Files:
src/sys/dev/i2c: pca9685.c
Log Message:
I was a little over-zealous with the includes. Tone it down just
a wee bit.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/i2c/pca9685.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/i2c/pca9685.c
diff -u src/sys/dev/i2c/pca9685.c:1.1 src/sys/dev/i2c/pca9685.c:1.2
--- src/sys/dev/i2c/pca9685.c:1.1 Wed Jul 24 05:25:32 2019
+++ src/sys/dev/i2c/pca9685.c Wed Jul 24 05:47:39 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: pca9685.c,v 1.1 2019/07/24 05:25:32 thorpej Exp $ */
+/* $NetBSD: pca9685.c,v 1.2 2019/07/24 05:47:39 thorpej Exp $ */
/*-
* Copyright (c) 2018, 2019 Jason R. Thorpe
@@ -27,18 +27,13 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pca9685.c,v 1.1 2019/07/24 05:25:32 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pca9685.c,v 1.2 2019/07/24 05:47:39 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
-#include <sys/conf.h>
-#include <sys/bus.h>
#include <sys/kernel.h>
-#include <sys/kmem.h>
#include <sys/mutex.h>
-#include <sys/proc.h>
-#include <sys/sysctl.h>
#include <dev/i2c/i2cvar.h>
#include <dev/i2c/pca9685reg.h>