blob: 394290f7809f60465c6bd5a00adcd84869320cbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ae,v 1.1 2006/04/22 17:24:27 joerg Exp $
--- cnxtinit.c.orig 2006-04-22 17:16:58.000000000 +0000
+++ cnxtinit.c
@@ -7,7 +7,11 @@
#include <string.h>
#include <err.h>
+#if defined(__DragonFly__)
+#include <bus/usb/usb.h>
+#else
#include <dev/usb/usb.h>
+#endif
#include "cnxt.h"
|