summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2014-11-18 02:37:32 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2014-11-18 02:37:32 +0000
commit9bd6b7ef7200376e760a05281171c9f8e23f80ab (patch)
tree27251bbc9c3dbbc43744ce06dbbae62846a166d2 /sys/dev/ic
parentf4c8f66da2946c9a6e025a16d60740b159b20bab (diff)
move arc4random prototype to systm.h. more appropriate for most code
to include that than rdnvar.h. ok deraadt dlg
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/if_wi.c4
-rw-r--r--sys/dev/ic/if_wi_hostap.c4
-rw-r--r--sys/dev/ic/rt2860.c4
-rw-r--r--sys/dev/ic/sili.c6
4 files changed, 4 insertions, 14 deletions
diff --git a/sys/dev/ic/if_wi.c b/sys/dev/ic/if_wi.c
index 2cf14762ea1..aa33896893b 100644
--- a/sys/dev/ic/if_wi.c
+++ b/sys/dev/ic/if_wi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_wi.c,v 1.157 2014/09/14 14:17:24 jsg Exp $ */
+/* $OpenBSD: if_wi.c,v 1.158 2014/11/18 02:37:30 tedu Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -92,8 +92,6 @@
#include <machine/bus.h>
-#include <dev/rndvar.h>
-
#include <dev/ic/if_wireg.h>
#include <dev/ic/if_wi_ieee.h>
#include <dev/ic/if_wivar.h>
diff --git a/sys/dev/ic/if_wi_hostap.c b/sys/dev/ic/if_wi_hostap.c
index e56fdfb245e..9d7b06429a1 100644
--- a/sys/dev/ic/if_wi_hostap.c
+++ b/sys/dev/ic/if_wi_hostap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_wi_hostap.c,v 1.46 2014/09/14 14:17:24 jsg Exp $ */
+/* $OpenBSD: if_wi_hostap.c,v 1.47 2014/11/18 02:37:30 tedu Exp $ */
/*
* Copyright (c) 2002
@@ -67,8 +67,6 @@
#include <net80211/ieee80211_var.h>
#include <net80211/ieee80211_ioctl.h>
-#include <dev/rndvar.h>
-
#include <dev/ic/if_wireg.h>
#include <dev/ic/if_wi_ieee.h>
#include <dev/ic/if_wivar.h>
diff --git a/sys/dev/ic/rt2860.c b/sys/dev/ic/rt2860.c
index 7779e768bb0..52fa1167557 100644
--- a/sys/dev/ic/rt2860.c
+++ b/sys/dev/ic/rt2860.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rt2860.c,v 1.75 2014/09/06 05:41:35 jsg Exp $ */
+/* $OpenBSD: rt2860.c,v 1.76 2014/11/18 02:37:30 tedu Exp $ */
/*-
* Copyright (c) 2007-2010 Damien Bergamini <damien.bergamini@free.fr>
@@ -60,8 +60,6 @@
#include <dev/pci/pcidevs.h>
-#include <dev/rndvar.h>
-
#ifdef RAL_DEBUG
#define DPRINTF(x) do { if (rt2860_debug > 0) printf x; } while (0)
#define DPRINTFN(n, x) do { if (rt2860_debug >= (n)) printf x; } while (0)
diff --git a/sys/dev/ic/sili.c b/sys/dev/ic/sili.c
index ada875c50bb..84fdd83a2f1 100644
--- a/sys/dev/ic/sili.c
+++ b/sys/dev/ic/sili.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sili.c,v 1.54 2014/09/14 14:17:25 jsg Exp $ */
+/* $OpenBSD: sili.c,v 1.55 2014/11/18 02:37:30 tedu Exp $ */
/*
* Copyright (c) 2007 David Gwynne <dlg@openbsd.org>
@@ -55,10 +55,6 @@ int sili_error_pmp_ports = 0; /* bitmask containing ports to fail*/
int sili_error_test_inv_p = 500; /* 1/P(error) */
int sili_error_restart_type = SILI_PREG_PCS_PORTINIT; /* or _DEVRESET */
-#ifdef SILI_ERROR_TEST
-#include <dev/rndvar.h>
-#endif
-
struct cfdriver sili_cd = {
NULL, "sili", DV_DULL
};