aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/bridge
diff options
context:
space:
mode:
authorInki Dae <inki.dae@samsung.com>2017-07-03 17:42:19 +0900
committerArchit Taneja <architt@codeaurora.org>2017-07-06 14:16:06 +0530
commitdd2adf743bc47ac14999bb375fed390af6524f29 (patch)
tree1e02c9b629b3002e0e9f274b43d6567286f0aa1b /drivers/gpu/drm/bridge
parentdrm/bridge: adv7511: clean up drm_bridge_add call (diff)
downloadlinux-dev-dd2adf743bc47ac14999bb375fed390af6524f29.tar.xz
linux-dev-dd2adf743bc47ac14999bb375fed390af6524f29.zip
drm/bridge: analogix-anx78xx: 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: http://patchwork.freedesktop.org/patch/msgid/1499071350-25168-4-git-send-email-inki.dae@samsung.com
Diffstat (limited to 'drivers/gpu/drm/bridge')
-rw-r--r--drivers/gpu/drm/bridge/analogix-anx78xx.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/gpu/drm/bridge/analogix-anx78xx.c b/drivers/gpu/drm/bridge/analogix-anx78xx.c
index 9006578b9789..c2fac3947006 100644
--- a/drivers/gpu/drm/bridge/analogix-anx78xx.c
+++ b/drivers/gpu/drm/bridge/analogix-anx78xx.c
@@ -1438,11 +1438,7 @@ static int anx78xx_i2c_probe(struct i2c_client *client,
anx78xx->bridge.funcs = &anx78xx_bridge_funcs;
- err = drm_bridge_add(&anx78xx->bridge);
- if (err < 0) {
- DRM_ERROR("Failed to add drm bridge: %d\n", err);
- goto err_poweroff;
- }
+ drm_bridge_add(&anx78xx->bridge);
/* If cable is pulled out, just poweroff and wait for HPD event */
if (!gpiod_get_value(anx78xx->pdata.gpiod_hpd))