diff options
author | n_hibma <n_hibma@FreeBSD.org> | 2001-09-18 22:30:02 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 2001-09-18 22:30:02 +0000 |
commit | 8b2456392d82cd0d6bafa874932839723e13eea4 (patch) | |
tree | 9e75f36931ff414e133c1eb5d48eea2902fdd8fe /sys/dev/usb/usbdevs.h | |
parent | 90fcad2a4d893ecc1b485ab3318fc303ccd86674 (diff) | |
download | FreeBSD-src-8b2456392d82cd0d6bafa874932839723e13eea4.zip FreeBSD-src-8b2456392d82cd0d6bafa874932839723e13eea4.tar.gz |
Regen.
Diffstat (limited to 'sys/dev/usb/usbdevs.h')
-rw-r--r-- | sys/dev/usb/usbdevs.h | 33 |
1 files changed, 25 insertions, 8 deletions
diff --git a/sys/dev/usb/usbdevs.h b/sys/dev/usb/usbdevs.h index 23d8fed..c122636 100644 --- a/sys/dev/usb/usbdevs.h +++ b/sys/dev/usb/usbdevs.h @@ -4,7 +4,7 @@ * THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. * * generated from: - * FreeBSD: src/sys/dev/usb/usbdevs,v 1.64 2001/09/09 03:07:15 dwhite Exp + * FreeBSD: src/sys/dev/usb/usbdevs,v 1.65 2001/09/18 22:27:41 n_hibma Exp */ /* @@ -47,20 +47,37 @@ /* * List of known USB vendors * - * Please note that these IDs do not do anything. Adding an ID here and + * Adding an ID and its string description for a device to the usbdevs file, + * enables the USB stack to print a useful description of the device that was + * connected. + * + * The ID should be added in usbdevs and then the files usbdevs.h and + * usbdevs_data.h need to be regenerated. + * + * # edit usbdevs + * make -f Makefile.usbdevs + * # test your change + * cd ../../modules/usb + * make + * # commit, if appropriate + * cvs -m "ID for device XYZ" commit usbdevs + * # commit the derived files after the $ FreeBSD $ has been updated. + * cvs commit usbdevs.h usbdevs_data.h + * + * Please note that these IDs do not do anything. Adding an ID in usbdevs 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. + * 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 may have to add these defines to the respective probe routines to - * make the device recognised by the appropriate device driver. + * You will have to add these defines to the respective probe routines to make + * the device recognised by the appropriate device driver. */ #define USB_VENDOR_AOX 0x03e8 /* AOX, Inc. */ |