Commit 70d8fa7c authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: imx319: fix a few coding style issues

Function alignments are off by 1 space, as reported by
checkpatch.pl --strict.

Fix those.
Acked-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 8a89dc62
......@@ -2400,8 +2400,8 @@ static struct imx319_hwcfg *imx319_get_hwcfg(struct device *dev)
}
cfg->nr_of_link_freqs = bus_cfg.nr_of_link_frequencies;
cfg->link_freqs = devm_kcalloc(
dev, bus_cfg.nr_of_link_frequencies + 1,
cfg->link_freqs = devm_kcalloc(dev,
bus_cfg.nr_of_link_frequencies + 1,
sizeof(*cfg->link_freqs), GFP_KERNEL);
if (!cfg->link_freqs)
goto out_err;
......
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