diff options
author | hselasky <hselasky@FreeBSD.org> | 2013-02-01 07:05:43 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2013-02-01 07:05:43 +0000 |
commit | ce15d88b31f3ddecdecc282326f41ff92658552e (patch) | |
tree | a62df3886148122d1d17219df126410bbd4e231c /sys/dev/usb/usbdi.h | |
parent | 57c1c0e0f90ffdcbb675b23c5771c4e42e45d157 (diff) | |
download | FreeBSD-src-ce15d88b31f3ddecdecc282326f41ff92658552e.zip FreeBSD-src-ce15d88b31f3ddecdecc282326f41ff92658552e.tar.gz |
Make use of USB ID sections configurable.
Diffstat (limited to 'sys/dev/usb/usbdi.h')
-rw-r--r-- | sys/dev/usb/usbdi.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/dev/usb/usbdi.h b/sys/dev/usb/usbdi.h index d39a84d..26f7769 100644 --- a/sys/dev/usb/usbdi.h +++ b/sys/dev/usb/usbdi.h @@ -241,12 +241,21 @@ struct usb_config { * have your driver module automatically loaded in host, device or * both modes respectivly: */ +#if USB_HAVE_ID_SECTION #define STRUCT_USB_HOST_ID \ struct usb_device_id __section("usb_host_id") #define STRUCT_USB_DEVICE_ID \ struct usb_device_id __section("usb_device_id") #define STRUCT_USB_DUAL_ID \ struct usb_device_id __section("usb_dual_id") +#else +#define STRUCT_USB_HOST_ID \ + struct usb_device_id +#define STRUCT_USB_DEVICE_ID \ + struct usb_device_id +#define STRUCT_USB_DUAL_ID \ + struct usb_device_id +#endif /* USB_HAVE_ID_SECTION */ /* * The following structure is used when looking up an USB driver for |