mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 15:12:13 +02:00
omapfb: simplify the return expression of sharp_ls_connect
Simplify the return expression. Signed-off-by: Liu Shixin <liushixin2@huawei.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Link: https://patchwork.freedesktop.org/patch/msgid/20200921082444.2591773-1-liushixin2@huawei.com
This commit is contained in:
parent
ef27afa607
commit
533278ca0d
|
|
@ -59,16 +59,11 @@ static int sharp_ls_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 sharp_ls_disconnect(struct omap_dss_device *dssdev)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user