blob: 9ff96280cd4992f36770bb81473c74e058f41e73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ad,v 1.1 2006/04/22 18:19:02 joerg Exp $
--- qcamshot.c.orig 2006-04-22 18:15:53.000000000 +0000
+++ qcamshot.c
@@ -31,7 +31,11 @@
#include <string.h>
#include <err.h>
+#if defined(__DragonFly__)
+#include <bus/usb/usb.h>
+#else
#include <dev/usb/usb.h>
+#endif
#include "linux_usbif.h"
#include "quickcam.h" /* Control register of the STV0600 ASIC */
|