]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - include/drm/drm_mipi_dsi.h
drm: Add drm_mode_create_rotation_property()
[karo-tx-linux.git] / include / drm / drm_mipi_dsi.h
index 7209df15a3cd1e1929989a180ff6aa5bf3ec86f1..944f33f8ba38d2072b2762306a9de0ae49c74ef2 100644 (file)
@@ -135,11 +135,13 @@ ssize_t mipi_dsi_dcs_read(struct mipi_dsi_device *dsi, unsigned int channel,
  * @driver: device driver model driver
  * @probe: callback for device binding
  * @remove: callback for device unbinding
+ * @shutdown: called at shutdown time to quiesce the device
  */
 struct mipi_dsi_driver {
        struct device_driver driver;
        int(*probe)(struct mipi_dsi_device *dsi);
        int(*remove)(struct mipi_dsi_device *dsi);
+       void (*shutdown)(struct mipi_dsi_device *dsi);
 };
 
 #define to_mipi_dsi_driver(d) container_of(d, struct mipi_dsi_driver, driver)