Lines Matching refs:in

22 	struct omap_dss_device *in;  member
57 struct omap_dss_device *in = ddata->in; in tvc_connect() local
65 r = in->ops.atv->connect(in, dssdev); 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()
88 struct omap_dss_device *in = ddata->in; in tvc_enable() local
99 in->ops.atv->set_timings(in, &ddata->timings); in tvc_enable()
102 in->ops.atv->set_type(in, ddata->connector_type); in tvc_enable()
104 in->ops.atv->invert_vid_out_polarity(in, in tvc_enable()
108 r = in->ops.atv->enable(in); in tvc_enable()
120 struct omap_dss_device *in = ddata->in; in tvc_disable() local
127 in->ops.atv->disable(in); in tvc_disable()
136 struct omap_dss_device *in = ddata->in; in tvc_set_timings() local
141 in->ops.atv->set_timings(in, timings); in tvc_set_timings()
156 struct omap_dss_device *in = ddata->in; in tvc_check_timings() local
158 return in->ops.atv->check_timings(in, timings); in tvc_check_timings()
164 struct omap_dss_device *in = ddata->in; in tvc_get_wss() local
166 return in->ops.atv->get_wss(in); in tvc_get_wss()
172 struct omap_dss_device *in = ddata->in; in tvc_set_wss() local
174 return in->ops.atv->set_wss(in, wss); in tvc_set_wss()
198 struct omap_dss_device *in, *dssdev; in tvc_probe_pdata() local
202 in = omap_dss_find_output(pdata->source); in tvc_probe_pdata()
203 if (in == NULL) { in tvc_probe_pdata()
208 ddata->in = in; in tvc_probe_pdata()
223 struct omap_dss_device *in; in tvc_probe_of() local
225 in = omapdss_of_find_source_for_first_ep(node); in tvc_probe_of()
226 if (IS_ERR(in)) { in tvc_probe_of()
228 return PTR_ERR(in); in tvc_probe_of()
231 ddata->in = in; in tvc_probe_of()
278 omap_dss_put_device(ddata->in); in tvc_probe()
286 struct omap_dss_device *in = ddata->in; in tvc_remove() local
293 omap_dss_put_device(in); in tvc_remove()