Commit 4ee2fc81 authored by Jason Yan's avatar Jason Yan Committed by Peter Chen

usb: chipidea: usb2: remove unneeded semicolon

Fix the following coccicheck warning:

drivers/usb/chipidea/ci_hdrc_usb2.c:75:28-29: Unneeded semicolon

Fixes: c2de37b3 ("usb: chipidea: usb2: make clock optional")
Reviewed-by: default avatarMichał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: default avatarJason Yan <yanaijie@huawei.com>
Signed-off-by: default avatarPeter Chen <peter.chen@nxp.com>
parent 95caa2ae
......@@ -72,7 +72,7 @@ static int ci_hdrc_usb2_probe(struct platform_device *pdev)
priv->clk = devm_clk_get_optional(dev, NULL);
if (IS_ERR(priv->clk))
return PTR_ERR(priv->clk);;
return PTR_ERR(priv->clk);
ret = clk_prepare_enable(priv->clk);
if (ret) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment