Commit 31c17924 authored by Gerd Hoffmann's avatar Gerd Hoffmann
parent e543e029
...@@ -73,7 +73,6 @@ struct bochs_device { ...@@ -73,7 +73,6 @@ struct bochs_device {
struct drm_crtc crtc; struct drm_crtc crtc;
struct drm_encoder encoder; struct drm_encoder encoder;
struct drm_connector connector; struct drm_connector connector;
bool mode_config_initialized;
/* ttm */ /* ttm */
struct { struct {
......
...@@ -267,7 +267,6 @@ const struct drm_mode_config_funcs bochs_mode_funcs = { ...@@ -267,7 +267,6 @@ const struct drm_mode_config_funcs bochs_mode_funcs = {
int bochs_kms_init(struct bochs_device *bochs) int bochs_kms_init(struct bochs_device *bochs)
{ {
drm_mode_config_init(bochs->dev); drm_mode_config_init(bochs->dev);
bochs->mode_config_initialized = true;
bochs->dev->mode_config.max_width = 8192; bochs->dev->mode_config.max_width = 8192;
bochs->dev->mode_config.max_height = 8192; bochs->dev->mode_config.max_height = 8192;
...@@ -292,9 +291,6 @@ int bochs_kms_init(struct bochs_device *bochs) ...@@ -292,9 +291,6 @@ int bochs_kms_init(struct bochs_device *bochs)
void bochs_kms_fini(struct bochs_device *bochs) void bochs_kms_fini(struct bochs_device *bochs)
{ {
if (bochs->mode_config_initialized) { drm_atomic_helper_shutdown(bochs->dev);
drm_atomic_helper_shutdown(bochs->dev); drm_mode_config_cleanup(bochs->dev);
drm_mode_config_cleanup(bochs->dev);
bochs->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