mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
drivers: staging: imx-drm driver cleanup
Wrapping two too long lines in two files of the imx-drm driver. Signed-off-by: Rene Kolarik <rene.kolarik@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
02c2d43c26
commit
f582d9a8b9
2 changed files with 4 additions and 2 deletions
|
@ -632,7 +632,8 @@ static int imx_drm_platform_probe(struct platform_device *pdev)
|
|||
continue;
|
||||
}
|
||||
|
||||
component_match_add(&pdev->dev, &match, compare_of, remote);
|
||||
component_match_add(&pdev->dev, &match, compare_of,
|
||||
remote);
|
||||
of_node_put(remote);
|
||||
}
|
||||
of_node_put(port);
|
||||
|
|
|
@ -665,7 +665,8 @@ static int imx_tve_bind(struct device *dev, struct device *master, void *data)
|
|||
|
||||
ret = regmap_read(tve->regmap, TVE_COM_CONF_REG, &val);
|
||||
if (ret < 0) {
|
||||
dev_err(dev, "failed to read configuration register: %d\n", ret);
|
||||
dev_err(dev, "failed to read configuration register: %d\n",
|
||||
ret);
|
||||
return ret;
|
||||
}
|
||||
if (val != 0x00100000) {
|
||||
|
|
Loading…
Reference in a new issue