/*-1* Copyright (c) 2013 Hans Petter Selasky. All rights reserved.2*3* Redistribution and use in source and binary forms, with or without4* modification, are permitted provided that the following conditions5* are met:6* 1. Redistributions of source code must retain the above copyright7* notice, this list of conditions and the following disclaimer.8* 2. Redistributions in binary form must reproduce the above copyright9* notice, this list of conditions and the following disclaimer in the10* documentation and/or other materials provided with the distribution.11*12* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND13* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE14* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE15* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE16* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL17* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS18* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)19* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT20* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY21* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF22* SUCH DAMAGE.23*/2425#ifndef _BSD_GLOBAL_H_26#define _BSD_GLOBAL_H_2728#include <bsd_kernel.h>2930#include <sys/gpio.h>3132#define USB_DEBUG_VAR usb_debug33#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/usbhid.h>57#include <dev/usb/usb_ioctl.h>58#include <dev/usb/usb_generic.h>59#include <dev/usb/quirk/usb_quirk.h>60#include <dev/usb/template/usb_template.h>61#include <dev/usb/controller/ehci.h>62#include <dev/usb/controller/ehcireg.h>6364extern struct usb_process usb_process[USB_PROC_MAX];6566#endif /* _BSD_GLOBAL_H_ */676869