]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
drm/exynos: fix wrong return check for platform_device_register_simple
authorSeung-Woo Kim <sw0312.kim@samsung.com>
Mon, 22 Apr 2013 08:13:13 +0000 (17:13 +0900)
committerInki Dae <inki.dae@samsung.com>
Mon, 29 Apr 2013 05:35:32 +0000 (14:35 +0900)
platform_device_register_simple() never returns NULL, but IS_ERR_OR_NULL macro
is used for checking return value in exynos drm driver.

Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
drivers/gpu/drm/exynos/exynos_drm_drv.c
drivers/gpu/drm/exynos/exynos_drm_hdmi.c

index 3da5c2d214d88777b2dd550295c8e939673289dd..488278ccb2a8754352e308cc38b5aa5d5edff15b 100644 (file)
@@ -388,7 +388,7 @@ static int __init exynos_drm_init(void)
 
        exynos_drm_pdev = platform_device_register_simple("exynos-drm", -1,
                                NULL, 0);
-       if (IS_ERR_OR_NULL(exynos_drm_pdev)) {
+       if (IS_ERR(exynos_drm_pdev)) {
                ret = PTR_ERR(exynos_drm_pdev);
                goto out;
        }
index 5285509e4b34101b49d75ee4eb8a4385777cd56f..6986a1b928859a89a8d84cb9f55da1b36d664103 100644 (file)
@@ -56,7 +56,7 @@ int exynos_platform_device_hdmi_register(void)
 
        exynos_drm_hdmi_pdev = platform_device_register_simple(
                        "exynos-drm-hdmi", -1, NULL, 0);
-       if (IS_ERR_OR_NULL(exynos_drm_hdmi_pdev))
+       if (IS_ERR(exynos_drm_hdmi_pdev))
                return PTR_ERR(exynos_drm_hdmi_pdev);
 
        return 0;