diff options
author | n_hibma <n_hibma@FreeBSD.org> | 2001-02-06 14:59:03 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 2001-02-06 14:59:03 +0000 |
commit | cae922e49c59adcc42848bf53e86ae04d800be86 (patch) | |
tree | 90c38b001e02c75cb0a66d6a3c919242e82d56e1 | |
parent | abe7e4afb5c0b97a7e601f50d700039444ba416a (diff) | |
download | FreeBSD-src-cae922e49c59adcc42848bf53e86ae04d800be86.zip FreeBSD-src-cae922e49c59adcc42848bf53e86ae04d800be86.tar.gz |
Add a comment about the fact that adding an ID doesn't actually do anything.
-rw-r--r-- | sys/dev/usb/usbdevs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index f8d98f0..691f970 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -39,6 +39,21 @@ $FreeBSD$ /* * List of known USB vendors + * + * Please note that these IDs do not do anything. Adding an ID here and + * regenerating the usbdevs.h and usbdevs_data.h only makes a symbolic name + * available to the source code and does not change any functionality, nor + * does it make your device available to a specific driver. + * It will however make the descriptive string available if a device does not + * provide the string itself. + * + * After adding a vendor ID VNDR and a product ID PRDCT you will have the + * following extra defines: + * #define USB_VENDOR_VNDR 0x???? + * #define USB_PRODUCT_VNDR_PRDCT 0x???? + * + * You will have to add these defines to the respective probe routines to + * make the device recognised by the appropriate device driver. */ vendor AOX 0x03e8 AOX, Inc. |