Lines Matching refs:in
21 struct omap_dss_device *in; member
48 struct omap_dss_device *in; in tvc_connect() local
56 in = omapdss_of_find_source_for_first_ep(ddata->dev->of_node); in tvc_connect()
57 if (IS_ERR(in)) { in tvc_connect()
59 return PTR_ERR(in); in tvc_connect()
62 r = in->ops.atv->connect(in, dssdev); in tvc_connect()
64 omap_dss_put_device(in); in tvc_connect()
68 ddata->in = in; in tvc_connect()
75 struct omap_dss_device *in = ddata->in; in tvc_disconnect() local
82 in->ops.atv->disconnect(in, dssdev); in tvc_disconnect()
84 omap_dss_put_device(in); in tvc_disconnect()
85 ddata->in = NULL; in tvc_disconnect()
91 struct omap_dss_device *in = ddata->in; in tvc_enable() local
102 in->ops.atv->set_timings(in, &ddata->vm); in tvc_enable()
104 r = in->ops.atv->enable(in); in tvc_enable()
116 struct omap_dss_device *in = ddata->in; in tvc_disable() local
123 in->ops.atv->disable(in); in tvc_disable()
132 struct omap_dss_device *in = ddata->in; in tvc_set_timings() local
137 in->ops.atv->set_timings(in, vm); in tvc_set_timings()
152 struct omap_dss_device *in = ddata->in; in tvc_check_timings() local
154 return in->ops.atv->check_timings(in, vm); in tvc_check_timings()
160 struct omap_dss_device *in = ddata->in; in tvc_get_wss() local
162 return in->ops.atv->get_wss(in); in tvc_get_wss()
168 struct omap_dss_device *in = ddata->in; in tvc_set_wss() local
170 return in->ops.atv->set_wss(in, wss); in tvc_set_wss()