Lines Matching refs:tfp410_connector
141 struct tfp410_connector { struct
147 #define to_tfp410_connector(x) container_of(x, struct tfp410_connector, base) argument
160 struct tfp410_connector *tfp410_connector = to_tfp410_connector(connector); in tfp410_connector_detect() local
162 if (drm_probe_ddc(tfp410_connector->mod->i2c)) in tfp410_connector_detect()
170 struct tfp410_connector *tfp410_connector = to_tfp410_connector(connector); in tfp410_connector_get_modes() local
174 edid = drm_get_edid(connector, tfp410_connector->mod->i2c); in tfp410_connector_get_modes()
197 struct tfp410_connector *tfp410_connector = to_tfp410_connector(connector); in tfp410_connector_best_encoder() local
198 return tfp410_connector->encoder; in tfp410_connector_best_encoder()
219 struct tfp410_connector *tfp410_connector; in tfp410_connector_create() local
223 tfp410_connector = devm_kzalloc(dev->dev, sizeof(*tfp410_connector), in tfp410_connector_create()
225 if (!tfp410_connector) in tfp410_connector_create()
228 tfp410_connector->encoder = encoder; in tfp410_connector_create()
229 tfp410_connector->mod = mod; in tfp410_connector_create()
231 connector = &tfp410_connector->base; in tfp410_connector_create()