aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/cy/cy.c
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2001-05-01 08:13:21 +0000
committerMark Murray <markm@FreeBSD.org>2001-05-01 08:13:21 +0000
commitfb919e4d5a2c1baca52ac70d1064f140fffdda71 (patch)
tree62c0461c4eb61081648eebf963146193ebdc7398 /sys/dev/cy/cy.c
parent8904de15a20f7c5372ec763d2b637b0997485466 (diff)
downloadsrc-fb919e4d5a2c1baca52ac70d1064f140fffdda71.tar.gz
src-fb919e4d5a2c1baca52ac70d1064f140fffdda71.zip
Undo part of the tangle of having sys/lock.h and sys/mutex.h included in
other "system" header files. Also help the deprecation of lockmgr.h by making it a sub-include of sys/lock.h and removing sys/lockmgr.h form kernel .c files. Sort sys/*.h includes where possible in affected files. OK'ed by: bde (with reservations)
Notes
Notes: svn path=/head/; revision=76166
Diffstat (limited to 'sys/dev/cy/cy.c')
-rw-r--r--sys/dev/cy/cy.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/cy/cy.c b/sys/dev/cy/cy.c
index b14b368b3d95..29063812dd2e 100644
--- a/sys/dev/cy/cy.c
+++ b/sys/dev/cy/cy.c
@@ -69,17 +69,19 @@
#include <sys/param.h>
#include <sys/systm.h>
-#include <sys/tty.h>
+#include <sys/bus.h>
#include <sys/conf.h>
#include <sys/dkstat.h>
#include <sys/fcntl.h>
-#include <sys/bus.h>
#include <sys/interrupt.h>
#include <sys/ipl.h>
#include <sys/kernel.h>
+#include <sys/lock.h>
#include <sys/malloc.h>
#include <sys/mutex.h>
#include <sys/syslog.h>
+#include <sys/tty.h>
+
#include <machine/psl.h>
#include <i386/isa/isa_device.h>