* Bump bcm, imx, mvebu64, xu4 and rockchip to 6.1.y * Add configs for imx6 and xu4 * Add broadcom kernel config * Move XU4 edge to mainline kernel as hardkernel branch contain nothing for it * Move Rockchip64 EDGE to 6.1 * Move rockchip (32 bit) edge to kernel 6.1 * Move rk322x edge kernel to 6.1 Co-authored-by: Paolo Sabatino <paolo.sabatino@gmail.com>
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,
|