Lines Matching refs:tfp410_connector
158 struct tfp410_connector { struct
164 #define to_tfp410_connector(x) container_of(x, struct tfp410_connector, base) argument
169 struct tfp410_connector *tfp410_connector = to_tfp410_connector(connector); in tfp410_connector_destroy() local
172 kfree(tfp410_connector); in tfp410_connector_destroy()
179 struct tfp410_connector *tfp410_connector = to_tfp410_connector(connector); in tfp410_connector_detect() local
181 if (drm_probe_ddc(tfp410_connector->mod->i2c)) in tfp410_connector_detect()
189 struct tfp410_connector *tfp410_connector = to_tfp410_connector(connector); in tfp410_connector_get_modes() local
193 edid = drm_get_edid(connector, tfp410_connector->mod->i2c); in tfp410_connector_get_modes()
216 struct tfp410_connector *tfp410_connector = to_tfp410_connector(connector); in tfp410_connector_best_encoder() local
217 return tfp410_connector->encoder; in tfp410_connector_best_encoder()
236 struct tfp410_connector *tfp410_connector; in tfp410_connector_create() local
240 tfp410_connector = kzalloc(sizeof(*tfp410_connector), GFP_KERNEL); in tfp410_connector_create()
241 if (!tfp410_connector) { in tfp410_connector_create()
246 tfp410_connector->encoder = encoder; in tfp410_connector_create()
247 tfp410_connector->mod = mod; in tfp410_connector_create()
249 connector = &tfp410_connector->base; in tfp410_connector_create()