Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

USB: gadget: audio: provide correct device id

The audio gadget driver should use a "Linux" device id, instead
of relying on NetChip's vendor id. So provide one out of our reserved
namespace.

Cc: Bryan Wu <cooloney@kernel.org>
Cc: Mike Frysinger <vapier@gentoo.org>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

+3 -3
+3 -3
drivers/usb/gadget/audio.c
··· 42 42 * Instead: allocate your own, using normal USB-IF procedures. 43 43 */ 44 44 45 - /* Thanks to NetChip Technologies for donating this product ID. */ 46 - #define AUDIO_VENDOR_NUM 0x0525 /* NetChip */ 47 - #define AUDIO_PRODUCT_NUM 0xa4a1 /* Linux-USB Audio Gadget */ 45 + /* Thanks to Linux Foundation for donating this product ID. */ 46 + #define AUDIO_VENDOR_NUM 0x1d6b /* Linux Foundation */ 47 + #define AUDIO_PRODUCT_NUM 0x0101 /* Linux-USB Audio Gadget */ 48 48 49 49 /*-------------------------------------------------------------------------*/ 50 50