Commit aaf40405 authored by Alexander Stein's avatar Alexander Stein Committed by Laurentiu Palcu
Browse files

drm/imx/dcss: Use dev_err_probe

parent a7f880bc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;
	}