Message ID | 20231215071801.94982-1-jiapeng.chong@linux.alibaba.com |
---|---|
State | New |
Headers | show |
Series | soc: qcom: stats: remove unneeded semicolon | expand |
diff --git a/drivers/soc/qcom/qcom_stats.c b/drivers/soc/qcom/qcom_stats.c index 5ec8a754b22b..175f04e115ab 100644 --- a/drivers/soc/qcom/qcom_stats.c +++ b/drivers/soc/qcom/qcom_stats.c @@ -391,7 +391,7 @@ static int qcom_stats_probe(struct platform_device *pdev) if (ret) { debugfs_remove_recursive(root); return ret; - }; + } platform_set_drvdata(pdev, root);
No functional modification involved. ./drivers/soc/qcom/qcom_stats.c:394:2-3: Unneeded semicolon. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=7751 Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> --- drivers/soc/qcom/qcom_stats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)