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

usb: Drop commas after SoC match table sentinels

It does not make sense to have a comma after a sentinel, as any new
elements must be added before the sentinel.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/5cae409f647272a5679291ebc0000bfeccc14160.1646311762.git.geert+renesas@glider.be
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Geert Uytterhoeven and committed by
Greg Kroah-Hartman
f8a98c45 4bf2283c

+2 -2
+1 -1
drivers/usb/gadget/udc/renesas_usb3.c
··· 2730 2730 .soc_id = "r8a7795", .revision = "ES1.*", 2731 2731 .data = &renesas_usb3_priv_r8a7795_es1, 2732 2732 }, 2733 - { /* sentinel */ }, 2733 + { /* sentinel */ } 2734 2734 }; 2735 2735 2736 2736 static const unsigned int renesas_usb3_cable[] = {
+1 -1
drivers/usb/host/xhci-rcar.c
··· 82 82 .soc_id = "r8a7795", .revision = "ES1.*", 83 83 .data = (void *)RCAR_XHCI_FIRMWARE_V2, 84 84 }, 85 - { /* sentinel */ }, 85 + { /* sentinel */ } 86 86 }; 87 87 88 88 static void xhci_rcar_start_gen2(struct usb_hcd *hcd)