aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/if_ndis/if_ndis_usb.c
diff options
context:
space:
mode:
authorAndrew Thompson <thompsa@FreeBSD.org>2009-06-23 02:19:59 +0000
committerAndrew Thompson <thompsa@FreeBSD.org>2009-06-23 02:19:59 +0000
commited6d949afdbe3f25e6ef640881d8a0a72d7b7aa8 (patch)
treeee5c9acfe716a9835136731811e9e1a68751e278 /sys/dev/if_ndis/if_ndis_usb.c
parent8c8fff3177f8d9611f191878b3864dc8ca3e5965 (diff)
downloadsrc-ed6d949afdbe3f25e6ef640881d8a0a72d7b7aa8.tar.gz
src-ed6d949afdbe3f25e6ef640881d8a0a72d7b7aa8.zip
- Make struct usb_xfer opaque so that drivers can not access the internals
- Reduce the number of headers needed for a usb driver, the common case is just usb.h and usbdi.h
Notes
Notes: svn path=/head/; revision=194677
Diffstat (limited to 'sys/dev/if_ndis/if_ndis_usb.c')
-rw-r--r--sys/dev/if_ndis/if_ndis_usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/if_ndis/if_ndis_usb.c b/sys/dev/if_ndis/if_ndis_usb.c
index 69fd1af42e1a..be03919cc8ab 100644
--- a/sys/dev/if_ndis/if_ndis_usb.c
+++ b/sys/dev/if_ndis/if_ndis_usb.c
@@ -53,7 +53,7 @@ __FBSDID("$FreeBSD$");
#include <sys/bus.h>
#include <machine/bus.h>
#include <dev/usb/usb.h>
-#include <dev/usb/usb_core.h>
+#include <dev/usb/usbdi.h>
#include <net80211/ieee80211_var.h>