From: Liu Shixin Date: Mon, 21 Sep 2020 08:24:45 +0000 (+0800) Subject: omapfb: simplify the return expression of tpo_td043_connect X-Git-Tag: accepted/tizen/unified/20230118.172025~6402^2~28^2~1619 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43624b403ba2596d15271ed103c9d25d9deca4b1;p=platform%2Fkernel%2Flinux-rpi.git omapfb: simplify the return expression of tpo_td043_connect Simplify the return expression. Signed-off-by: Liu Shixin Signed-off-by: Sam Ravnborg Link: https://patchwork.freedesktop.org/patch/msgid/20200921082445.2591825-1-liushixin2@huawei.com --- diff --git a/drivers/video/fbdev/omap2/omapfb/displays/panel-tpo-td043mtea1.c b/drivers/video/fbdev/omap2/omapfb/displays/panel-tpo-td043mtea1.c index bb85b21..afac1d9 100644 --- a/drivers/video/fbdev/omap2/omapfb/displays/panel-tpo-td043mtea1.c +++ b/drivers/video/fbdev/omap2/omapfb/displays/panel-tpo-td043mtea1.c @@ -337,16 +337,11 @@ static int tpo_td043_connect(struct omap_dss_device *dssdev) { struct panel_drv_data *ddata = to_panel_data(dssdev); struct omap_dss_device *in = ddata->in; - int r; if (omapdss_device_is_connected(dssdev)) return 0; - r = in->ops.dpi->connect(in, dssdev); - if (r) - return r; - - return 0; + return in->ops.dpi->connect(in, dssdev); } static void tpo_td043_disconnect(struct omap_dss_device *dssdev)