Skip to content

Commit b26babb

Browse files
Marek Vasutjfvogel
authored andcommitted
USB: cdc-acm: Fill in Renesas R-Car D3 USB Download mode quirk
commit 7284922 upstream. Add Renesas R-Car D3 USB Download mode quirk and update comments on all the other Renesas R-Car USB Download mode quirks to discern them from each other. This follows R-Car Series, 3rd Generation reference manual Rev.2.00 chapter 19.2.8 USB download mode . Fixes: 6d853c9 ("usb: cdc-acm: Add DISABLE_ECHO for Renesas USB Download mode") Cc: stable <stable@kernel.org> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Link: https://lore.kernel.org/r/20250209145708.106914-1-marek.vasut+renesas@mailbox.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> (cherry picked from commit 165fac6cebc8f08d14dea66447263450783def32) Signed-off-by: Jack Vogel <jack.vogel@oracle.com>
1 parent bd28232 commit b26babb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

drivers/usb/class/cdc-acm.c

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1727,13 +1727,16 @@ static const struct usb_device_id acm_ids[] = {
17271727
{ USB_DEVICE(0x0870, 0x0001), /* Metricom GS Modem */
17281728
.driver_info = NO_UNION_NORMAL, /* has no union descriptor */
17291729
},
1730-
{ USB_DEVICE(0x045b, 0x023c), /* Renesas USB Download mode */
1730+
{ USB_DEVICE(0x045b, 0x023c), /* Renesas R-Car H3 USB Download mode */
17311731
.driver_info = DISABLE_ECHO, /* Don't echo banner */
17321732
},
1733-
{ USB_DEVICE(0x045b, 0x0248), /* Renesas USB Download mode */
1733+
{ USB_DEVICE(0x045b, 0x0247), /* Renesas R-Car D3 USB Download mode */
17341734
.driver_info = DISABLE_ECHO, /* Don't echo banner */
17351735
},
1736-
{ USB_DEVICE(0x045b, 0x024D), /* Renesas USB Download mode */
1736+
{ USB_DEVICE(0x045b, 0x0248), /* Renesas R-Car M3-N USB Download mode */
1737+
.driver_info = DISABLE_ECHO, /* Don't echo banner */
1738+
},
1739+
{ USB_DEVICE(0x045b, 0x024D), /* Renesas R-Car E3 USB Download mode */
17371740
.driver_info = DISABLE_ECHO, /* Don't echo banner */
17381741
},
17391742
{ USB_DEVICE(0x0e8d, 0x0003), /* FIREFLY, MediaTek Inc; andrey.arapov@gmail.com */

0 commit comments

Comments
 (0)