summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb
diff options
context:
space:
mode:
authorhselasky <hselasky@FreeBSD.org>2011-06-23 10:35:45 +0000
committerhselasky <hselasky@FreeBSD.org>2011-06-23 10:35:45 +0000
commitd706015f71643daedaa30613b11519d84ed98e93 (patch)
tree23c9e9d256b4d9366441299951d1cf5f5a7f4ae2 /sys/dev/usb
parentb7eb040870f8f7f13c02782685f7c8da18ca0f5c (diff)
downloadFreeBSD-src-d706015f71643daedaa30613b11519d84ed98e93.zip
FreeBSD-src-d706015f71643daedaa30613b11519d84ed98e93.tar.gz
- Add some comments about the origin of some USB descriptors.
MFC after: 7 days
Diffstat (limited to 'sys/dev/usb')
-rw-r--r--sys/dev/usb/template/usb_template_audio.c7
-rw-r--r--sys/dev/usb/template/usb_template_kbd.c2
-rw-r--r--sys/dev/usb/template/usb_template_mouse.c2
3 files changed, 10 insertions, 1 deletions
diff --git a/sys/dev/usb/template/usb_template_audio.c b/sys/dev/usb/template/usb_template_audio.c
index 1e2e568..8e9e7f0 100644
--- a/sys/dev/usb/template/usb_template_audio.c
+++ b/sys/dev/usb/template/usb_template_audio.c
@@ -95,7 +95,12 @@ USB_MAKE_STRING_DESC(STRING_AUDIO_PRODUCT, string_audio_product);
/* prototypes */
-/* Audio Mixer description structures */
+/*
+ * Audio Mixer description structures
+ *
+ * Some of the audio descriptors were dumped
+ * from a Creative Labs USB audio device.
+ */
static const uint8_t audio_raw_desc_0[] = {
0x0a, 0x24, 0x01, 0x00, 0x01, 0xa9, 0x00, 0x02,
diff --git a/sys/dev/usb/template/usb_template_kbd.c b/sys/dev/usb/template/usb_template_kbd.c
index 4a9b9da..8928c06 100644
--- a/sys/dev/usb/template/usb_template_kbd.c
+++ b/sys/dev/usb/template/usb_template_kbd.c
@@ -94,6 +94,8 @@ static const struct usb_temp_interval keyboard_intr_interval = {
.bInterval[USB_SPEED_HIGH] = 2 * 8,
};
+/* The following HID descriptor was dumped from a HP keyboard. */
+
static uint8_t keyboard_hid_descriptor[] = {
0x05, 0x01, 0x09, 0x06, 0xa1, 0x01, 0x05, 0x07,
0x19, 0xe0, 0x29, 0xe7, 0x15, 0x00, 0x25, 0x01,
diff --git a/sys/dev/usb/template/usb_template_mouse.c b/sys/dev/usb/template/usb_template_mouse.c
index b0f5381..3ff0fb0 100644
--- a/sys/dev/usb/template/usb_template_mouse.c
+++ b/sys/dev/usb/template/usb_template_mouse.c
@@ -82,6 +82,8 @@ USB_MAKE_STRING_DESC(STRING_PRODUCT, string_product);
/* prototypes */
+/* The following HID descriptor was dumped from a HP mouse. */
+
static uint8_t mouse_hid_descriptor[] = {
0x05, 0x01, 0x09, 0x02, 0xa1, 0x01, 0x09, 0x01,
0xa1, 0x00, 0x05, 0x09, 0x19, 0x01, 0x29, 0x03,
OpenPOWER on IntegriCloud