diff options
-rw-r--r-- | drivers/staging/imx-drm/imx-drm-core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/imx-drm/imx-drm-core.c b/drivers/staging/imx-drm/imx-drm-core.c index d2fb699c0d1d..4483d47f7395 100644 --- a/drivers/staging/imx-drm/imx-drm-core.c +++ b/drivers/staging/imx-drm/imx-drm-core.c | |||
@@ -852,8 +852,8 @@ static int __init imx_drm_init(void) | |||
852 | INIT_LIST_HEAD(&imx_drm_device->encoder_list); | 852 | INIT_LIST_HEAD(&imx_drm_device->encoder_list); |
853 | 853 | ||
854 | imx_drm_pdev = platform_device_register_simple("imx-drm", -1, NULL, 0); | 854 | imx_drm_pdev = platform_device_register_simple("imx-drm", -1, NULL, 0); |
855 | if (!imx_drm_pdev) { | 855 | if (IS_ERR(imx_drm_pdev)) { |
856 | ret = -EINVAL; | 856 | ret = PTR_ERR(imx_drm_pdev); |
857 | goto err_pdev; | 857 | goto err_pdev; |
858 | } | 858 | } |
859 | 859 | ||