const struct omapdss_dsi_ops dsi;
 };
 
-/**
- * enum omap_dss_device_ops_flag - Indicates which device ops are supported
- * @OMAP_DSS_DEVICE_OP_MODES: The device supports reading modes
- */
-enum omap_dss_device_ops_flag {
-       OMAP_DSS_DEVICE_OP_MODES = BIT(3),
-};
-
 struct omap_dss_device {
        struct device *dev;
 
        const char *name;
 
        const struct omap_dss_device_ops *ops;
-       unsigned long ops_flags;
        u32 bus_flags;
 
        /* OMAP DSS output specific fields */
 
        out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
        out->owner = THIS_MODULE;
        out->of_port = 0;
-       out->ops_flags = OMAP_DSS_DEVICE_OP_MODES;
 
        r = omapdss_device_init_output(out, &venc->bridge);
        if (r < 0) {