diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-06-14 06:55:11 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-06-14 06:55:11 +0000 |
commit | 81d37f5acb8dbeb4c69b8539353acc64e604fb9f (patch) | |
tree | 6ce0f020fdf0e6b52cf52b38a9d2f6e243eb3be4 /sys/arch/arm | |
parent | 1c26a103229becc335544f22e5af5c2dcb668e8a (diff) |
Move the inclusion of sys/timeout.h from usb_port.h to the drivers that
need it.
If a USB driver uses timeout(9) functions, the header file sys/timeout.h
must be included.
Tested by me (i386, macppc, sparc64), ckuethe (amd64), & todd (sparc, zaurus).
ok dlg.
Diffstat (limited to 'sys/arch/arm')
-rw-r--r-- | sys/arch/arm/xscale/pxa27x_udc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/arm/xscale/pxa27x_udc.c b/sys/arch/arm/xscale/pxa27x_udc.c index 07e86ae35e3..f29154bb07a 100644 --- a/sys/arch/arm/xscale/pxa27x_udc.c +++ b/sys/arch/arm/xscale/pxa27x_udc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pxa27x_udc.c,v 1.21 2007/06/10 14:49:01 mbalmer Exp $ */ +/* $OpenBSD: pxa27x_udc.c,v 1.22 2007/06/14 06:55:10 mbalmer Exp $ */ /* * Copyright (c) 2007 Dale Rahn <drahn@openbsd.org> @@ -23,6 +23,7 @@ #include <sys/device.h> #include <sys/kernel.h> #include <sys/malloc.h> +#include <sys/timeout.h> #include <machine/intr.h> #include <machine/bus.h> |