* Bump rockchip DEV 32b to 5.11.y * Move mvebu64 DEV to 5.11.y * Move Rockchip64 DEV to 5.11.y Disabling general-rkvdec_nv15.patch - need more attention * Add Meson DEV / Odroid C1 * Move OdroidXU4 DEV to tobetter's 5.11.y branch * Bump sunxi DEV to 5.11.y * Bump mvebu DEV to 5.11.y
20 lines
513 B
Diff
20 lines
513 B
Diff
diff --git a/sound/usb/card.c b/sound/usb/card.c
|
|
index 2bfe4e80a..cea93aaf5 100644
|
|
--- a/sound/usb/card.c
|
|
+++ b/sound/usb/card.c
|
|
@@ -382,6 +382,14 @@ static void usb_audio_make_shortname(struct usb_device *dev,
|
|
}
|
|
|
|
strim(card->shortname);
|
|
+
|
|
+ /* Tinker Board ALC4040 CODEC */
|
|
+
|
|
+ if(USB_ID_VENDOR(chip->usb_id) == 0x0bda &&
|
|
+ USB_ID_PRODUCT(chip->usb_id) == 0x481a) {
|
|
+ strlcat(card->shortname, " OnBoard", sizeof(card->shortname));
|
|
+ }
|
|
+
|
|
}
|
|
|
|
static void usb_audio_make_longname(struct usb_device *dev,
|