summaryrefslogtreecommitdiff
path: root/sys/dev/usb/if_cue.c
diff options
context:
space:
mode:
authorMarc Balmer <mbalmer@cvs.openbsd.org>2007-06-14 06:55:11 +0000
committerMarc Balmer <mbalmer@cvs.openbsd.org>2007-06-14 06:55:11 +0000
commit81d37f5acb8dbeb4c69b8539353acc64e604fb9f (patch)
tree6ce0f020fdf0e6b52cf52b38a9d2f6e243eb3be4 /sys/dev/usb/if_cue.c
parent1c26a103229becc335544f22e5af5c2dcb668e8a (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/dev/usb/if_cue.c')
-rw-r--r--sys/dev/usb/if_cue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_cue.c b/sys/dev/usb/if_cue.c
index ef723afd152..f34b5ac4c0f 100644
--- a/sys/dev/usb/if_cue.c
+++ b/sys/dev/usb/if_cue.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_cue.c,v 1.43 2007/06/13 11:15:29 mbalmer Exp $ */
+/* $OpenBSD: if_cue.c,v 1.44 2007/06/14 06:55:10 mbalmer Exp $ */
/* $NetBSD: if_cue.c,v 1.40 2002/07/11 21:14:26 augustss Exp $ */
/*
* Copyright (c) 1997, 1998, 1999, 2000
@@ -65,7 +65,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/socket.h>
-
+#include <sys/timeout.h>
#include <sys/device.h>
#include <net/if.h>