We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30285db commit 94e0923Copy full SHA for 94e0923
sound/usb/card.c
@@ -427,9 +427,9 @@ static int snd_usb_audio_create(struct usb_interface *intf,
427
}
428
strim(card->shortname);
429
430
- /* OnBoard ALC4040 Audio Codec */
431
- if (USB_ID_VENDOR(chip->usb_id) == 0x0bda &&
432
- USB_ID_PRODUCT(chip->usb_id) == 0x481a) {
+ /* OnBoard ALC4040 and ALC4030U Audio Codec */
+ if (USB_ID_VENDOR(chip->usb_id) == 0x0bda) {
+ if ((USB_ID_PRODUCT(chip->usb_id) == 0x481a) || (USB_ID_PRODUCT(chip->usb_id) == 0x49f6))
433
strlcat(card->shortname, " OnBoard", sizeof(card->shortname));
434
435
0 commit comments