media: imx355: fix a few coding style issues

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

Fix those.

Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
Mauro Carvalho Chehab 2018-10-05 10:18:05 -04:00
parent df0b5c4a7d
commit 370d8e2a75
1 changed files with 16 additions and 16 deletions

View File

@ -1700,8 +1700,8 @@ static struct imx355_hwcfg *imx355_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;