Commit 9c8846c7 authored by Jason Wang's avatar Jason Wang Committed by Greg Kroah-Hartman
Browse files

usb: cdnsp: Remove unneeded semicolon after `}'



The semicolon after `}' is unneeded. So, just remove it.

Signed-off-by: default avatarJason Wang <wangborong@cdjrlc.com>
Link: https://lore.kernel.org/r/20211114055140.213945-1-wangborong@cdjrlc.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8ab77458
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);