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 12ce301 commit e133febCopy full SHA for e133feb
drivers/gpu/drm/radeon/radeon_irq_kms.c
@@ -79,6 +79,11 @@ static void radeon_hotplug_work_func(struct work_struct *work)
79
struct drm_mode_config *mode_config = &dev->mode_config;
80
struct drm_connector *connector;
81
82
+ /* we can race here at startup, some boards seem to trigger
83
+ * hotplug irqs when they shouldn't. */
84
+ if (!rdev->mode_info.mode_config_initialized)
85
+ return;
86
+
87
mutex_lock(&mode_config->mutex);
88
if (mode_config->num_connector) {
89
list_for_each_entry(connector, &mode_config->connector_list, head)
0 commit comments