blob: 17c7f1678dc46bb9c25497f2c4dee2b1691b6dd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ab,v 1.1 2006/03/14 17:06:58 hamajima Exp $
--- linux_usbif.h.orig 2006-03-03 15:42:44.000000000 +0000
+++ linux_usbif.h
@@ -20,7 +20,11 @@
#include <limits.h>
#include <err.h>
+#if defined(__DragonFly__)
+#include <bus/usb/usb.h>
+#else
#include <dev/usb/usb.h>
+#endif
#define USB_ENDPOINT_DIR_MASK 0x80
#define USB_DIR_OUT UT_WRITE
|