Commit a7190042 authored by Gerd Hoffmann's avatar Gerd Hoffmann
parent 31c17924
...@@ -101,7 +101,6 @@ struct cirrus_crtc { ...@@ -101,7 +101,6 @@ struct cirrus_crtc {
struct cirrus_fbdev; struct cirrus_fbdev;
struct cirrus_mode_info { struct cirrus_mode_info {
bool mode_config_initialized;
struct cirrus_crtc *crtc; struct cirrus_crtc *crtc;
/* pointer to fbdev info structure */ /* pointer to fbdev info structure */
struct cirrus_fbdev *gfbdev; struct cirrus_fbdev *gfbdev;
......
...@@ -575,7 +575,6 @@ int cirrus_modeset_init(struct cirrus_device *cdev) ...@@ -575,7 +575,6 @@ int cirrus_modeset_init(struct cirrus_device *cdev)
int ret; int ret;
drm_mode_config_init(cdev->dev); drm_mode_config_init(cdev->dev);
cdev->mode_info.mode_config_initialized = true;
cdev->dev->mode_config.max_width = CIRRUS_MAX_FB_WIDTH; cdev->dev->mode_config.max_width = CIRRUS_MAX_FB_WIDTH;
cdev->dev->mode_config.max_height = CIRRUS_MAX_FB_HEIGHT; cdev->dev->mode_config.max_height = CIRRUS_MAX_FB_HEIGHT;
...@@ -613,10 +612,6 @@ int cirrus_modeset_init(struct cirrus_device *cdev) ...@@ -613,10 +612,6 @@ int cirrus_modeset_init(struct cirrus_device *cdev)
void cirrus_modeset_fini(struct cirrus_device *cdev) void cirrus_modeset_fini(struct cirrus_device *cdev)
{ {
cirrus_fbdev_fini(cdev); cirrus_fbdev_fini(cdev);
drm_helper_force_disable_all(cdev->dev);
if (cdev->mode_info.mode_config_initialized) { drm_mode_config_cleanup(cdev->dev);
drm_helper_force_disable_all(cdev->dev);
drm_mode_config_cleanup(cdev->dev);
cdev->mode_info.mode_config_initialized = false;
}
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment