diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-12-12 15:58:23 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-12-12 15:58:23 +0000 |
commit | b850c9916581482ad70b00d930383bf24108bae7 (patch) | |
tree | addd37e12d6da8aba7ff2f9c926546ca96c12236 | |
parent | 16b79d3b61b6f1ced4b91ce6e1a58e548bf4e746 (diff) | |
download | FreeBSD-src-b850c9916581482ad70b00d930383bf24108bae7.zip FreeBSD-src-b850c9916581482ad70b00d930383bf24108bae7.tar.gz |
Add DIVA USB mp3 player.
Submitted by: Olexander Kunytsa <kunia@x-telecom.net>
MFC after: 3 days
-rw-r--r-- | sys/dev/usb/usbdevs | 1 | ||||
-rw-r--r-- | sys/dev/usb/usbdevs.h | 1 | ||||
-rw-r--r-- | sys/dev/usb/usbdevs_data.h | 6 |
3 files changed, 8 insertions, 0 deletions
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index bc8f2ed..274817a 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -821,6 +821,7 @@ product PHILIPS HUB 0x0201 hub product PHILIPS PCA646VC 0x0303 PCA646VC PC Camera product PHILIPS PCVC680K 0x0308 PCVC680K Vesta Pro PC Camera product PHILIPS DSS150 0x0471 DSS 150 Digital Speaker System +product PHILIPS DIVAUSB 0x1801 DIVA USB mp3 player /* Philips Semiconductor products */ product PHILIPSSEMI HUB1122 0x1122 hub diff --git a/sys/dev/usb/usbdevs.h b/sys/dev/usb/usbdevs.h index a5d8789..c5dcf78 100644 --- a/sys/dev/usb/usbdevs.h +++ b/sys/dev/usb/usbdevs.h @@ -828,6 +828,7 @@ #define USB_PRODUCT_PHILIPS_PCA646VC 0x0303 /* PCA646VC PC Camera */ #define USB_PRODUCT_PHILIPS_PCVC680K 0x0308 /* PCVC680K Vesta Pro PC Camera */ #define USB_PRODUCT_PHILIPS_DSS150 0x0471 /* DSS 150 Digital Speaker System */ +#define USB_PRODUCT_PHILIPS_DIVAUSB 0x1801 /* DIVA USB mp3 player */ /* Philips Semiconductor products */ #define USB_PRODUCT_PHILIPSSEMI_HUB1122 0x1122 /* hub */ diff --git a/sys/dev/usb/usbdevs_data.h b/sys/dev/usb/usbdevs_data.h index d84c125..96168cc 100644 --- a/sys/dev/usb/usbdevs_data.h +++ b/sys/dev/usb/usbdevs_data.h @@ -1714,6 +1714,12 @@ struct usb_knowndev usb_knowndevs[] = { "DSS 150 Digital Speaker System", }, { + USB_VENDOR_PHILIPS, USB_PRODUCT_PHILIPS_DIVAUSB, + 0, + "Philips", + "DIVA USB mp3 player", + }, + { USB_VENDOR_PHILIPSSEMI, USB_PRODUCT_PHILIPSSEMI_HUB1122, 0, "Philips Semiconductors", |