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

Commit 6c982376 authored by Daniel Vetter's avatar Daniel Vetter
Browse files

drm/i915: s/mdelay/msleep/ in the sdvo detect function



A 30 ms delay is simply way too big to waste cpu cycles on.

Acked-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 61e9653f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1371,7 +1371,7 @@ intel_sdvo_detect(struct drm_connector *connector, bool force)

	/* add 30ms delay when the output type might be TV */
	if (intel_sdvo->caps.output_flags & SDVO_TV_MASK)
		mdelay(30);
		msleep(30);

	if (!intel_sdvo_read_response(intel_sdvo, &response, 2))
		return connector_status_unknown;