diff options
author | Inki Dae <inki.dae@samsung.com> | 2017-07-03 17:42:28 +0900 |
---|---|---|
committer | Archit Taneja <architt@codeaurora.org> | 2017-08-21 08:50:35 +0530 |
commit | 059e3c0b2fa30b6903de6b78f191028484385c3b (patch) | |
tree | 3db6a0dbe053e8d2cdf09ebfc209b53fd120541d /drivers/gpu/drm/exynos/exynos_drm_mic.c | |
parent | 851394552779dbc85fffa8726dd2d09ad43313a8 (diff) | |
download | blackbird-obmc-linux-059e3c0b2fa30b6903de6b78f191028484385c3b.tar.gz blackbird-obmc-linux-059e3c0b2fa30b6903de6b78f191028484385c3b.zip |
drm/exynos: mic: clean up drm_bridge_add call
This patch removes unnecessary checking of return value.
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Archit Taneja <architt@codeaurora.org>
Link: https://patchwork.freedesktop.org/patch/msgid/1499071350-25168-13-git-send-email-inki.dae@samsung.com
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_mic.c')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_mic.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_mic.c b/drivers/gpu/drm/exynos/exynos_drm_mic.c index 16bbee897e0d..ab333d5b2727 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_mic.c +++ b/drivers/gpu/drm/exynos/exynos_drm_mic.c @@ -456,11 +456,7 @@ static int exynos_mic_probe(struct platform_device *pdev) mic->bridge.funcs = &mic_bridge_funcs; mic->bridge.of_node = dev->of_node; - ret = drm_bridge_add(&mic->bridge); - if (ret) { - DRM_ERROR("mic: Failed to add MIC to the global bridge list\n"); - return ret; - } + drm_bridge_add(&mic->bridge); pm_runtime_enable(dev); |