diff options
author | phk <phk@FreeBSD.org> | 2000-10-15 14:19:01 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2000-10-15 14:19:01 +0000 |
commit | beadbd4365a420ed657bf084947334cf763fe9df (patch) | |
tree | f7588f727cba89fa00d17c7a96d1d9721ac818cc /sys/dev/usb | |
parent | 16b7b5256b098cbfcccd40598a02b1b4e2e97289 (diff) | |
download | FreeBSD-src-beadbd4365a420ed657bf084947334cf763fe9df.zip FreeBSD-src-beadbd4365a420ed657bf084947334cf763fe9df.tar.gz |
Remove unneeded #include <machine/clock.h>
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/if_aue.c | 1 | ||||
-rw-r--r-- | sys/dev/usb/if_cue.c | 1 | ||||
-rw-r--r-- | sys/dev/usb/if_kue.c | 1 | ||||
-rw-r--r-- | sys/dev/usb/ohci.c | 1 | ||||
-rw-r--r-- | sys/dev/usb/uhci.c | 1 | ||||
-rw-r--r-- | sys/dev/usb/ukbd.c | 2 | ||||
-rw-r--r-- | sys/dev/usb/umass.c | 1 | ||||
-rw-r--r-- | sys/dev/usb/usb_subr.c | 1 | ||||
-rw-r--r-- | sys/dev/usb/usbdi.c | 1 |
9 files changed, 0 insertions, 10 deletions
diff --git a/sys/dev/usb/if_aue.c b/sys/dev/usb/if_aue.c index fc3241a..e88962b 100644 --- a/sys/dev/usb/if_aue.c +++ b/sys/dev/usb/if_aue.c @@ -77,7 +77,6 @@ #include <net/bpf.h> -#include <machine/clock.h> /* for DELAY */ #include <sys/bus.h> #include <dev/usb/usb.h> diff --git a/sys/dev/usb/if_cue.c b/sys/dev/usb/if_cue.c index 3de4364..a55b01a 100644 --- a/sys/dev/usb/if_cue.c +++ b/sys/dev/usb/if_cue.c @@ -65,7 +65,6 @@ #include <net/bpf.h> -#include <machine/clock.h> /* for DELAY */ #include <sys/bus.h> #include <dev/usb/usb.h> diff --git a/sys/dev/usb/if_kue.c b/sys/dev/usb/if_kue.c index 780c42b..0b5f9fb 100644 --- a/sys/dev/usb/if_kue.c +++ b/sys/dev/usb/if_kue.c @@ -80,7 +80,6 @@ #include <net/bpf.h> -#include <machine/clock.h> /* for DELAY */ #include <sys/bus.h> #include <dev/usb/usb.h> diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index 9d584d9..dee9216 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -77,7 +77,6 @@ #include <dev/usb/ohcivar.h> #if defined(__FreeBSD__) -#include <machine/clock.h> #define delay(d) DELAY(d) #endif diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c index d9aeabf..c243035 100644 --- a/sys/dev/usb/uhci.c +++ b/sys/dev/usb/uhci.c @@ -79,7 +79,6 @@ #include <dev/usb/uhcivar.h> #if defined(__FreeBSD__) -#include <machine/clock.h> #define delay(d) DELAY(d) #endif diff --git a/sys/dev/usb/ukbd.c b/sys/dev/usb/ukbd.c index 5debe8f..1cfa940 100644 --- a/sys/dev/usb/ukbd.c +++ b/sys/dev/usb/ukbd.c @@ -50,7 +50,6 @@ #include <sys/ioccom.h> #include <sys/module.h> #include <sys/bus.h> -#include <machine/clock.h> #include <sys/file.h> #include <sys/select.h> #include <sys/proc.h> @@ -217,7 +216,6 @@ DRIVER_MODULE(ukbd, uhub, ukbd_driver, ukbd_devclass, ukbd_driver_load, 0); #include <machine/limits.h> #include <sys/kbio.h> -#include <machine/clock.h> #define UKBD_DEFAULT 0 diff --git a/sys/dev/usb/umass.c b/sys/dev/usb/umass.c index 01bce13..927135e 100644 --- a/sys/dev/usb/umass.c +++ b/sys/dev/usb/umass.c @@ -100,7 +100,6 @@ #include <sys/kernel.h> #include <sys/module.h> #include <sys/bus.h> -#include <machine/clock.h> #include <dev/usb/usb.h> #include <dev/usb/usbdi.h> diff --git a/sys/dev/usb/usb_subr.c b/sys/dev/usb/usb_subr.c index 8b467f3..241c0fa 100644 --- a/sys/dev/usb/usb_subr.c +++ b/sys/dev/usb/usb_subr.c @@ -62,7 +62,6 @@ #include <dev/usb/usb_quirks.h> #if defined(__FreeBSD__) -#include <machine/clock.h> #define delay(d) DELAY(d) #endif diff --git a/sys/dev/usb/usbdi.c b/sys/dev/usb/usbdi.c index f4ac846..1266ec3 100644 --- a/sys/dev/usb/usbdi.c +++ b/sys/dev/usb/usbdi.c @@ -63,7 +63,6 @@ #if defined(__FreeBSD__) #include "usb_if.h" -#include <machine/clock.h> #define delay(d) DELAY(d) #endif |