]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/boot/usb/bsd_global.h
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / boot / usb / bsd_global.h
1 /* $FreeBSD$ */
2 /*-
3  * Copyright (c) 2013 Hans Petter Selasky. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 #ifndef _BSD_GLOBAL_H_
28 #define _BSD_GLOBAL_H_
29
30 #include <bsd_kernel.h>
31
32 #define USB_DEBUG_VAR usb_debug
33 #include <dev/usb/usb_freebsd_loader.h>
34 #include <dev/usb/usb_endian.h>
35 #include <dev/usb/usb.h>
36 #include <dev/usb/usbdi.h>
37 #include <dev/usb/usb_core.h>
38 #include <dev/usb/usb_debug.h>
39 #include <dev/usb/usb_process.h>
40 #include <dev/usb/usb_busdma.h>
41 #include <dev/usb/usb_dynamic.h>
42 #include <dev/usb/usb_transfer.h>
43 #include <dev/usb/usb_device.h>
44 #include <dev/usb/usb_hub.h>
45 #include <dev/usb/usb_controller.h>
46 #include <dev/usb/usb_bus.h>
47 #include <dev/usb/usbdi_util.h>
48 #include <dev/usb/usb_cdc.h>
49 #include <dev/usb/usb_dev.h>
50 #include <dev/usb/usb_mbuf.h>
51 #include <dev/usb/usb_msctest.h>
52 #include <dev/usb/usb_pci.h>
53 #include <dev/usb/usb_pf.h>
54 #include <dev/usb/usb_request.h>
55 #include <dev/usb/usb_util.h>
56 #include <dev/usb/usb_compat_linux.h>
57 #include <dev/usb/usbhid.h>
58 #include <dev/usb/usb_ioctl.h>
59 #include <dev/usb/usb_generic.h>
60 #include <dev/usb/quirk/usb_quirk.h>
61 #include <dev/usb/template/usb_template.h>
62
63 extern struct usb_process usb_process[USB_PROC_MAX];
64
65 #endif                                  /* _BSD_GLOBAL_H_ */