Lines Matching refs:in

19 	struct omap_dss_device *in;  member
49 struct omap_dss_device *in = ddata->in; in tvc_connect() local
56 return in->ops.atv->connect(in, dssdev); in tvc_connect()
62 struct omap_dss_device *in = ddata->in; in tvc_disconnect() local
69 in->ops.atv->disconnect(in, dssdev); in tvc_disconnect()
75 struct omap_dss_device *in = ddata->in; in tvc_enable() local
86 in->ops.atv->set_timings(in, &ddata->timings); in tvc_enable()
89 in->ops.atv->set_type(in, OMAP_DSS_VENC_TYPE_COMPOSITE); in tvc_enable()
91 in->ops.atv->invert_vid_out_polarity(in, in tvc_enable()
95 r = in->ops.atv->enable(in); in tvc_enable()
107 struct omap_dss_device *in = ddata->in; in tvc_disable() local
114 in->ops.atv->disable(in); in tvc_disable()
123 struct omap_dss_device *in = ddata->in; in tvc_set_timings() local
128 in->ops.atv->set_timings(in, timings); in tvc_set_timings()
143 struct omap_dss_device *in = ddata->in; in tvc_check_timings() local
145 return in->ops.atv->check_timings(in, timings); in tvc_check_timings()
151 struct omap_dss_device *in = ddata->in; in tvc_get_wss() local
153 return in->ops.atv->get_wss(in); in tvc_get_wss()
159 struct omap_dss_device *in = ddata->in; in tvc_set_wss() local
161 return in->ops.atv->set_wss(in, wss); in tvc_set_wss()
185 struct omap_dss_device *in, *dssdev; in tvc_probe_pdata() local
189 in = omap_dss_find_output(pdata->source); in tvc_probe_pdata()
190 if (in == NULL) { in tvc_probe_pdata()
195 ddata->in = in; in tvc_probe_pdata()
209 struct omap_dss_device *in; in tvc_probe_of() local
211 in = omapdss_of_find_source_for_first_ep(node); in tvc_probe_of()
212 if (IS_ERR(in)) { in tvc_probe_of()
214 return PTR_ERR(in); in tvc_probe_of()
217 ddata->in = in; in tvc_probe_of()
264 omap_dss_put_device(ddata->in); in tvc_probe()
272 struct omap_dss_device *in = ddata->in; in tvc_remove() local
279 omap_dss_put_device(in); in tvc_remove()