Lines Matching refs:in
22 struct omap_dss_device *in; member
52 struct omap_dss_device *in = ddata->in; in tvc_connect() local
60 r = in->ops.atv->connect(in, dssdev); in tvc_connect()
70 struct omap_dss_device *in = ddata->in; in tvc_disconnect() local
77 in->ops.atv->disconnect(in, dssdev); in tvc_disconnect()
83 struct omap_dss_device *in = ddata->in; in tvc_enable() local
94 in->ops.atv->set_timings(in, &ddata->timings); in tvc_enable()
97 in->ops.atv->set_type(in, OMAP_DSS_VENC_TYPE_COMPOSITE); in tvc_enable()
99 in->ops.atv->invert_vid_out_polarity(in, in tvc_enable()
103 r = in->ops.atv->enable(in); in tvc_enable()
115 struct omap_dss_device *in = ddata->in; in tvc_disable() local
122 in->ops.atv->disable(in); in tvc_disable()
131 struct omap_dss_device *in = ddata->in; in tvc_set_timings() local
136 in->ops.atv->set_timings(in, timings); in tvc_set_timings()
151 struct omap_dss_device *in = ddata->in; in tvc_check_timings() local
153 return in->ops.atv->check_timings(in, timings); in tvc_check_timings()
159 struct omap_dss_device *in = ddata->in; in tvc_get_wss() local
161 return in->ops.atv->get_wss(in); in tvc_get_wss()
167 struct omap_dss_device *in = ddata->in; in tvc_set_wss() local
169 return in->ops.atv->set_wss(in, wss); in tvc_set_wss()
193 struct omap_dss_device *in, *dssdev; in tvc_probe_pdata() local
197 in = omap_dss_find_output(pdata->source); in tvc_probe_pdata()
198 if (in == NULL) { in tvc_probe_pdata()
203 ddata->in = in; in tvc_probe_pdata()
217 struct omap_dss_device *in; in tvc_probe_of() local
219 in = omapdss_of_find_source_for_first_ep(node); in tvc_probe_of()
220 if (IS_ERR(in)) { in tvc_probe_of()
222 return PTR_ERR(in); in tvc_probe_of()
225 ddata->in = in; in tvc_probe_of()
272 omap_dss_put_device(ddata->in); in tvc_probe()
280 struct omap_dss_device *in = ddata->in; in tvc_remove() local
287 omap_dss_put_device(in); in tvc_remove()