summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/usbdi.h
diff options
context:
space:
mode:
authorhselasky <hselasky@FreeBSD.org>2013-02-01 07:05:43 +0000
committerhselasky <hselasky@FreeBSD.org>2013-02-01 07:05:43 +0000
commitce15d88b31f3ddecdecc282326f41ff92658552e (patch)
treea62df3886148122d1d17219df126410bbd4e231c /sys/dev/usb/usbdi.h
parent57c1c0e0f90ffdcbb675b23c5771c4e42e45d157 (diff)
downloadFreeBSD-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.h9
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
OpenPOWER on IntegriCloud