Skip to content

Commit 7a0c5cb

Browse files
intel-lab-lkpShawn Guo
authored andcommitted
soc: imx: fix semicolon.cocci warnings
drivers/soc/imx/imx8mp-blk-ctrl.c:227:61-62: Unneeded semicolon drivers/soc/imx/imx8mp-blk-ctrl.c:192:61-62: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Fixes: 556f5cf ("soc: imx: add i.MX8MP HSIO blk-ctrl") CC: Lucas Stach <l.stach@pengutronix.de> Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: kernel test robot <lkp@intel.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
1 parent e344202 commit 7a0c5cb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/soc/imx/imx8mp-blk-ctrl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ static int imx8mp_blk_ctrl_power_on(struct generic_pm_domain *genpd)
379379
}
380380

381381
/* enable upstream clocks */
382-
ret = clk_bulk_prepare_enable(data->num_clks, domain->clks);;
382+
ret = clk_bulk_prepare_enable(data->num_clks, domain->clks);
383383
if (ret) {
384384
dev_err(bc->dev, "failed to enable clocks\n");
385385
goto bus_put;
@@ -414,7 +414,7 @@ static int imx8mp_blk_ctrl_power_off(struct generic_pm_domain *genpd)
414414
struct imx8mp_blk_ctrl *bc = domain->bc;
415415
int ret;
416416

417-
ret = clk_bulk_prepare_enable(data->num_clks, domain->clks);;
417+
ret = clk_bulk_prepare_enable(data->num_clks, domain->clks);
418418
if (ret) {
419419
dev_err(bc->dev, "failed to enable clocks\n");
420420
return ret;

0 commit comments

Comments
 (0)