usb: cdnsp: Remove unneeded semicolon after `}'
authorJason Wang <wangborong@cdjrlc.com>
Sun, 14 Nov 2021 05:51:40 +0000 (13:51 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 17 Nov 2021 13:24:41 +0000 (14:24 +0100)
The semicolon after `}' is unneeded. So, just remove it.

Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
Link: https://lore.kernel.org/r/20211114055140.213945-1-wangborong@cdjrlc.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/cdns3/cdnsp-gadget.c

index 27df0c6..05439e6 100644 (file)
@@ -81,7 +81,7 @@ int cdnsp_find_next_ext_cap(void __iomem *base, u32 start, int id)
                offset = HCC_EXT_CAPS(val) << 2;
                if (!offset)
                        return 0;
-       };
+       }
 
        do {
                val = readl(base + offset);