Lines Matching refs:dssdev
17 struct omap_dss_device dssdev; member
22 #define to_panel_data(x) container_of(x, struct panel_drv_data, dssdev)
43 struct omap_dss_device *dssdev; in tvc_probe() local
52 dssdev = &ddata->dssdev; in tvc_probe()
53 dssdev->ops = &tvc_ops; in tvc_probe()
54 dssdev->dev = &pdev->dev; in tvc_probe()
55 dssdev->type = OMAP_DISPLAY_TYPE_VENC; in tvc_probe()
56 dssdev->display = true; in tvc_probe()
57 dssdev->owner = THIS_MODULE; in tvc_probe()
58 dssdev->of_ports = BIT(0); in tvc_probe()
60 omapdss_display_init(dssdev); in tvc_probe()
61 omapdss_device_register(dssdev); in tvc_probe()
70 omapdss_device_unregister(&ddata->dssdev); in tvc_remove()