Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 634086b4 authored by Tom St Denis's avatar Tom St Denis Committed by Alex Deucher
Browse files

drm/amd/display: Fix brace style

parent 9a227d26
Loading
Loading
Loading
Loading
+6 −9
Original line number Diff line number Diff line
@@ -208,25 +208,22 @@ static void remove_timer_handler(struct amdgpu_device *adev,
			DM_IRQ_TABLE_LOCK(adev, irq_table_flags);
		}

		if (handler_in == NULL) {
		/* Remove ALL handlers. */
		if (handler_in == NULL)
			continue;
		}

		if (handler_in == handler_temp) {
		/* Remove a SPECIFIC handler.
		 * Found our handler - we can stop here. */
		if (handler_in == handler_temp)
			break;
	}
	}

	DM_IRQ_TABLE_UNLOCK(adev, irq_table_flags);

	if (handler_in != NULL && handler_removed == false) {
	if (handler_in != NULL && handler_removed == false)
		DRM_ERROR("DM_IRQ: handler: %p is not in the list!\n",
				handler_in);
}
}

static bool
validate_irq_registration_params(struct dc_interrupt_params *int_params,