usb: cdnsp: Remove unneeded semicolon after `}'

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>
This commit is contained in:
Jason Wang 2021-11-14 13:51:40 +08:00 committed by Greg Kroah-Hartman
parent 8ab7745879
commit 9c8846c73e
1 changed files with 1 additions and 1 deletions

View 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);