summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2010-04-20 22:05:45 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2010-04-20 22:05:45 +0000
commitdb10abfb640a50974a18e7061ec7790337b03345 (patch)
treefa36581e05f4028667b2e8de73179d482314e768 /sys/dev/ic
parent0ae0e081f1d14c8b45bec997d2a96673cc9f8f7b (diff)
remove proc.h include from uvm_map.h. This has far reaching effects, as
sysctl.h was reliant on this particular include, and many drivers included sysctl.h unnecessarily. remove sysctl.h or add proc.h as needed. ok deraadt
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/acx100.c3
-rw-r--r--sys/dev/ic/acx111.c4
-rw-r--r--sys/dev/ic/ar5416.c3
-rw-r--r--sys/dev/ic/ar5xxx.h4
-rw-r--r--sys/dev/ic/ar9280.c3
-rw-r--r--sys/dev/ic/ar9285.c3
-rw-r--r--sys/dev/ic/ar9287.c3
-rw-r--r--sys/dev/ic/ath.c3
-rw-r--r--sys/dev/ic/athn.c3
-rw-r--r--sys/dev/ic/pgt.c3
-rw-r--r--sys/dev/ic/rt2560.c3
-rw-r--r--sys/dev/ic/rt2661.c3
-rw-r--r--sys/dev/ic/rt2860.c3
13 files changed, 15 insertions, 26 deletions
diff --git a/sys/dev/ic/acx100.c b/sys/dev/ic/acx100.c
index bc1f1110b2b..97c0e96749d 100644
--- a/sys/dev/ic/acx100.c
+++ b/sys/dev/ic/acx100.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: acx100.c,v 1.20 2007/07/18 19:24:21 damien Exp $ */
+/* $OpenBSD: acx100.c,v 1.21 2010/04/20 22:05:41 tedu Exp $ */
/*
* Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org>
@@ -55,7 +55,6 @@
#include <sys/mbuf.h>
#include <sys/endian.h>
#include <sys/socket.h>
-#include <sys/sysctl.h>
#include <sys/device.h>
#include <machine/bus.h>
diff --git a/sys/dev/ic/acx111.c b/sys/dev/ic/acx111.c
index 1288f1f66e5..4990a627d7f 100644
--- a/sys/dev/ic/acx111.c
+++ b/sys/dev/ic/acx111.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: acx111.c,v 1.17 2008/06/01 10:17:45 brad Exp $ */
+/* $OpenBSD: acx111.c,v 1.18 2010/04/20 22:05:41 tedu Exp $ */
/*
* Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org>
@@ -53,7 +53,7 @@
#include <sys/param.h>
#include <sys/endian.h>
#include <sys/socket.h>
-#include <sys/sysctl.h>
+#include <sys/systm.h>
#include <sys/device.h>
#include <machine/bus.h>
diff --git a/sys/dev/ic/ar5416.c b/sys/dev/ic/ar5416.c
index ab9b92eb207..12f88985598 100644
--- a/sys/dev/ic/ar5416.c
+++ b/sys/dev/ic/ar5416.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ar5416.c,v 1.6 2010/04/19 16:41:19 damien Exp $ */
+/* $OpenBSD: ar5416.c,v 1.7 2010/04/20 22:05:41 tedu Exp $ */
/*-
* Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr>
@@ -26,7 +26,6 @@
#include <sys/param.h>
#include <sys/sockio.h>
-#include <sys/sysctl.h>
#include <sys/mbuf.h>
#include <sys/kernel.h>
#include <sys/socket.h>
diff --git a/sys/dev/ic/ar5xxx.h b/sys/dev/ic/ar5xxx.h
index 7da71e7e2df..c72772de1d3 100644
--- a/sys/dev/ic/ar5xxx.h
+++ b/sys/dev/ic/ar5xxx.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ar5xxx.h,v 1.47 2009/07/24 16:31:27 jsg Exp $ */
+/* $OpenBSD: ar5xxx.h,v 1.48 2010/04/20 22:05:41 tedu Exp $ */
/*
* Copyright (c) 2004, 2005, 2006, 2007 Reyk Floeter <reyk@openbsd.org>
@@ -33,7 +33,7 @@
#define _AR5K_H
#include <sys/param.h>
-#include <sys/sysctl.h>
+#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/lock.h>
#include <sys/kernel.h>
diff --git a/sys/dev/ic/ar9280.c b/sys/dev/ic/ar9280.c
index b61fe59cec2..138ad789e72 100644
--- a/sys/dev/ic/ar9280.c
+++ b/sys/dev/ic/ar9280.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ar9280.c,v 1.3 2009/11/17 19:32:22 damien Exp $ */
+/* $OpenBSD: ar9280.c,v 1.4 2010/04/20 22:05:41 tedu Exp $ */
/*-
* Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr>
@@ -26,7 +26,6 @@
#include <sys/param.h>
#include <sys/sockio.h>
-#include <sys/sysctl.h>
#include <sys/mbuf.h>
#include <sys/kernel.h>
#include <sys/socket.h>
diff --git a/sys/dev/ic/ar9285.c b/sys/dev/ic/ar9285.c
index 432e4af1dad..f9442fa8bac 100644
--- a/sys/dev/ic/ar9285.c
+++ b/sys/dev/ic/ar9285.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ar9285.c,v 1.6 2010/04/07 16:19:33 damien Exp $ */
+/* $OpenBSD: ar9285.c,v 1.7 2010/04/20 22:05:43 tedu Exp $ */
/*-
* Copyright (c) 2009-2010 Damien Bergamini <damien.bergamini@free.fr>
@@ -26,7 +26,6 @@
#include <sys/param.h>
#include <sys/sockio.h>
-#include <sys/sysctl.h>
#include <sys/mbuf.h>
#include <sys/kernel.h>
#include <sys/socket.h>
diff --git a/sys/dev/ic/ar9287.c b/sys/dev/ic/ar9287.c
index 439feceec10..bd05d37ba3e 100644
--- a/sys/dev/ic/ar9287.c
+++ b/sys/dev/ic/ar9287.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ar9287.c,v 1.7 2010/04/05 19:09:00 damien Exp $ */
+/* $OpenBSD: ar9287.c,v 1.8 2010/04/20 22:05:43 tedu Exp $ */
/*-
* Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr>
@@ -26,7 +26,6 @@
#include <sys/param.h>
#include <sys/sockio.h>
-#include <sys/sysctl.h>
#include <sys/mbuf.h>
#include <sys/kernel.h>
#include <sys/socket.h>
diff --git a/sys/dev/ic/ath.c b/sys/dev/ic/ath.c
index 72326b17d57..64640c2fea1 100644
--- a/sys/dev/ic/ath.c
+++ b/sys/dev/ic/ath.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ath.c,v 1.84 2009/10/13 19:33:16 pirofti Exp $ */
+/* $OpenBSD: ath.c,v 1.85 2010/04/20 22:05:43 tedu Exp $ */
/* $NetBSD: ath.c,v 1.37 2004/08/18 21:59:39 dyoung Exp $ */
/*-
@@ -45,7 +45,6 @@
#include <sys/param.h>
#include <sys/systm.h>
-#include <sys/sysctl.h>
#include <sys/mbuf.h>
#include <sys/malloc.h>
#include <sys/lock.h>
diff --git a/sys/dev/ic/athn.c b/sys/dev/ic/athn.c
index 6062748800b..0bddedd1e54 100644
--- a/sys/dev/ic/athn.c
+++ b/sys/dev/ic/athn.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: athn.c,v 1.35 2010/04/10 19:07:24 damien Exp $ */
+/* $OpenBSD: athn.c,v 1.36 2010/04/20 22:05:43 tedu Exp $ */
/*-
* Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr>
@@ -25,7 +25,6 @@
#include <sys/param.h>
#include <sys/sockio.h>
-#include <sys/sysctl.h>
#include <sys/mbuf.h>
#include <sys/kernel.h>
#include <sys/socket.h>
diff --git a/sys/dev/ic/pgt.c b/sys/dev/ic/pgt.c
index afc75aaf266..318e179cd14 100644
--- a/sys/dev/ic/pgt.c
+++ b/sys/dev/ic/pgt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pgt.c,v 1.57 2010/03/29 23:33:39 krw Exp $ */
+/* $OpenBSD: pgt.c,v 1.58 2010/04/20 22:05:43 tedu Exp $ */
/*
* Copyright (c) 2006 Claudio Jeker <claudio@openbsd.org>
@@ -55,7 +55,6 @@
#include <sys/mbuf.h>
#include <sys/endian.h>
#include <sys/sockio.h>
-#include <sys/sysctl.h>
#include <sys/kthread.h>
#include <sys/time.h>
#include <sys/ioctl.h>
diff --git a/sys/dev/ic/rt2560.c b/sys/dev/ic/rt2560.c
index 561e82b87b8..ecc79997eb0 100644
--- a/sys/dev/ic/rt2560.c
+++ b/sys/dev/ic/rt2560.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rt2560.c,v 1.46 2009/11/01 12:08:36 damien Exp $ */
+/* $OpenBSD: rt2560.c,v 1.47 2010/04/20 22:05:43 tedu Exp $ */
/*-
* Copyright (c) 2005, 2006
@@ -26,7 +26,6 @@
#include <sys/param.h>
#include <sys/sockio.h>
-#include <sys/sysctl.h>
#include <sys/mbuf.h>
#include <sys/kernel.h>
#include <sys/socket.h>
diff --git a/sys/dev/ic/rt2661.c b/sys/dev/ic/rt2661.c
index 41122311efe..80124d98ab6 100644
--- a/sys/dev/ic/rt2661.c
+++ b/sys/dev/ic/rt2661.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rt2661.c,v 1.52 2010/02/14 09:20:34 damien Exp $ */
+/* $OpenBSD: rt2661.c,v 1.53 2010/04/20 22:05:43 tedu Exp $ */
/*-
* Copyright (c) 2006
@@ -26,7 +26,6 @@
#include <sys/param.h>
#include <sys/sockio.h>
-#include <sys/sysctl.h>
#include <sys/mbuf.h>
#include <sys/kernel.h>
#include <sys/socket.h>
diff --git a/sys/dev/ic/rt2860.c b/sys/dev/ic/rt2860.c
index ab0a4e2a9c6..728055f8917 100644
--- a/sys/dev/ic/rt2860.c
+++ b/sys/dev/ic/rt2860.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rt2860.c,v 1.51 2010/04/12 18:02:31 damien Exp $ */
+/* $OpenBSD: rt2860.c,v 1.52 2010/04/20 22:05:43 tedu Exp $ */
/*-
* Copyright (c) 2007-2010 Damien Bergamini <damien.bergamini@free.fr>
@@ -25,7 +25,6 @@
#include <sys/param.h>
#include <sys/sockio.h>
-#include <sys/sysctl.h>
#include <sys/mbuf.h>
#include <sys/kernel.h>
#include <sys/socket.h>