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 088be96 commit d78e776Copy full SHA for d78e776
drivers/gpu/drm/radeon/radeon_irq_kms.c
@@ -51,6 +51,11 @@ static void radeon_hotplug_work_func(struct work_struct *work)
51
struct drm_mode_config *mode_config = &dev->mode_config;
52
struct drm_connector *connector;
53
54
+ /* we can race here at startup, some boards seem to trigger
55
+ * hotplug irqs when they shouldn't. */
56
+ if (!rdev->mode_info.mode_config_initialized)
57
+ return;
58
+
59
mutex_lock(&mode_config->mutex);
60
if (mode_config->num_connector) {
61
list_for_each_entry(connector, &mode_config->connector_list, head)
0 commit comments