Commit b5c17905 authored by Xu Wang's avatar Xu Wang Committed by Mauro Carvalho Chehab

media: i2c: mt9p031: Remove redundant null check before clk_disable_unprepare

Because clk_disable_unprepare() already checked NULL clock parameter,
so the additional check is unnecessary, just remove it.
Signed-off-by: default avatarXu Wang <vulab@iscas.ac.cn>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 5e6fd339
...@@ -346,7 +346,6 @@ static void mt9p031_power_off(struct mt9p031 *mt9p031) ...@@ -346,7 +346,6 @@ static void mt9p031_power_off(struct mt9p031 *mt9p031)
regulator_bulk_disable(ARRAY_SIZE(mt9p031->regulators), regulator_bulk_disable(ARRAY_SIZE(mt9p031->regulators),
mt9p031->regulators); mt9p031->regulators);
if (mt9p031->clk)
clk_disable_unprepare(mt9p031->clk); clk_disable_unprepare(mt9p031->clk);
} }
......
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