Lines Matching full:in

19 	struct omap_dss_device *in;  member
49 struct omap_dss_device *in = ddata->in; in tvc_connect() local
57 r = in->ops.atv->connect(in, dssdev); in tvc_connect()
67 struct omap_dss_device *in = ddata->in; in tvc_disconnect() local
74 in->ops.atv->disconnect(in, dssdev); in tvc_disconnect()
80 struct omap_dss_device *in = ddata->in; in tvc_enable() local
91 in->ops.atv->set_timings(in, &ddata->timings); in tvc_enable()
94 in->ops.atv->set_type(in, OMAP_DSS_VENC_TYPE_COMPOSITE); in tvc_enable()
96 in->ops.atv->invert_vid_out_polarity(in, in tvc_enable()
100 r = in->ops.atv->enable(in); in tvc_enable()
112 struct omap_dss_device *in = ddata->in; in tvc_disable() local
119 in->ops.atv->disable(in); in tvc_disable()
128 struct omap_dss_device *in = ddata->in; in tvc_set_timings() local
133 in->ops.atv->set_timings(in, timings); in tvc_set_timings()
148 struct omap_dss_device *in = ddata->in; in tvc_check_timings() local
150 return in->ops.atv->check_timings(in, timings); in tvc_check_timings()
156 struct omap_dss_device *in = ddata->in; in tvc_get_wss() local
158 return in->ops.atv->get_wss(in); in tvc_get_wss()
164 struct omap_dss_device *in = ddata->in; in tvc_set_wss() local
166 return in->ops.atv->set_wss(in, wss); in tvc_set_wss()
190 struct omap_dss_device *in, *dssdev; in tvc_probe_pdata() local
194 in = omap_dss_find_output(pdata->source); in tvc_probe_pdata()
195 if (in == NULL) { in tvc_probe_pdata()
200 ddata->in = in; in tvc_probe_pdata()
214 struct omap_dss_device *in; in tvc_probe_of() local
216 in = omapdss_of_find_source_for_first_ep(node); in tvc_probe_of()
217 if (IS_ERR(in)) { in tvc_probe_of()
219 return PTR_ERR(in); in tvc_probe_of()
222 ddata->in = in; in tvc_probe_of()
269 omap_dss_put_device(ddata->in); in tvc_probe()
277 struct omap_dss_device *in = ddata->in; in tvc_remove() local
284 omap_dss_put_device(in); in tvc_remove()