drivers/input/touchscreen/goodix-ts-sunrise/goodix_gtx5_update.c:752:2-3: Unneeded semicolon
Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Wang Yafei <[email protected]> Signed-off-by: Fengguang Wu <[email protected]> --- goodix_gtx5_update.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/input/touchscreen/goodix-ts-sunrise/goodix_gtx5_update.c +++ b/drivers/input/touchscreen/goodix-ts-sunrise/goodix_gtx5_update.c @@ -749,7 +749,7 @@ static int goodix_send_fw_packet(struct if (r < 0) { dev_err(ts_dev->dev, "Error occurred when wait ISP idle\n"); return r; - }; + } /* check ISP result */ r = goodix_isp_flash_done(ts_dev);

