We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47ac09b commit f4b2a0aCopy full SHA for f4b2a0a
drivers/gpu/drm/xe/display/xe_display.c
@@ -132,6 +132,7 @@ static void xe_display_fini_noirq(void *arg)
132
return;
133
134
intel_display_driver_remove_noirq(xe);
135
+ intel_opregion_cleanup(xe);
136
}
137
138
int xe_display_init_noirq(struct xe_device *xe)
@@ -157,8 +158,10 @@ int xe_display_init_noirq(struct xe_device *xe)
157
158
intel_display_device_info_runtime_init(xe);
159
160
err = intel_display_driver_probe_noirq(xe);
- if (err)
161
+ if (err) {
162
163
return err;
164
+ }
165
166
return devm_add_action_or_reset(xe->drm.dev, xe_display_fini_noirq, xe);
167
0 commit comments