mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
drm/imx/dcss: Use dev_err_probe
This helps identifying problems with downstream pipeline devices, like HDMI/DP output. Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com> Reviewed-by: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com> Signed-off-by: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230717092950.448823-1-alexander.stein@ew.tq-group.com
This commit is contained in:
parent
a7f880bc4c
commit
aaf4040563
1 changed files with 1 additions and 0 deletions
|
@ -66,6 +66,7 @@ static int dcss_drv_platform_probe(struct platform_device *pdev)
|
|||
mdrv->kms = dcss_kms_attach(mdrv->dcss);
|
||||
if (IS_ERR(mdrv->kms)) {
|
||||
err = PTR_ERR(mdrv->kms);
|
||||
dev_err_probe(dev, err, "Failed to initialize KMS\n");
|
||||
goto dcss_shutoff;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue