Skip to content
Snippets Groups Projects
Commit 533278ca authored by Liu Shixin's avatar Liu Shixin Committed by Sam Ravnborg
Browse files

omapfb: simplify the return expression of sharp_ls_connect

parent ef27afa6
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment