Protect against multiple inclusions.

This commit is contained in:
Maxim Sobolev 2005-03-25 12:49:26 +00:00
parent d521dc21e7
commit 87fcbb8fe0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=144105

View File

@ -38,6 +38,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _USBDI_H_
#define _USBDI_H_
typedef struct usbd_bus *usbd_bus_handle;
typedef struct usbd_device *usbd_device_handle;
typedef struct usbd_interface *usbd_interface_handle;
@ -286,3 +289,5 @@ int usbd_driver_load(module_t mod, int what, void *arg);
#endif /* USB_USE_SOFTINTR */
#define splhardusb splbio
#define IPL_USB IPL_BIO
#endif