Lines Matching defs:omap_dss_driver
598 struct omap_dss_driver { struct
599 struct device_driver driver;
601 int (*probe)(struct omap_dss_device *);
602 void (*remove)(struct omap_dss_device *);
604 int (*enable)(struct omap_dss_device *display);
605 void (*disable)(struct omap_dss_device *display);
606 int (*suspend)(struct omap_dss_device *display);
607 int (*resume)(struct omap_dss_device *display);
608 int (*run_test)(struct omap_dss_device *display, int test);
610 int (*update)(struct omap_dss_device *dssdev,
612 int (*sync)(struct omap_dss_device *dssdev);
614 int (*enable_te)(struct omap_dss_device *dssdev, bool enable);
615 int (*get_te)(struct omap_dss_device *dssdev);
617 u8 (*get_rotate)(struct omap_dss_device *dssdev);
618 int (*set_rotate)(struct omap_dss_device *dssdev, u8 rotate);
620 bool (*get_mirror)(struct omap_dss_device *dssdev);
621 int (*set_mirror)(struct omap_dss_device *dssdev, bool enable);
623 int (*memory_read)(struct omap_dss_device *dssdev,
647 int omap_dss_register_driver(struct omap_dss_driver *); argument