mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-06 15:36:44 +07:00
drm/i915: mdelay(10) considered harmful
I missed this myself when reviewing commit237ed86c69
Author: Sonika Jindal <sonika.jindal@intel.com> Date: Tue Sep 15 09:44:20 2015 +0530 drm/i915: Check live status before reading edid Long sleeps like this really shouldn't waste cpu cycles spinning. Cc: Sonika Jindal <sonika.jindal@intel.com> Cc: "Wang, Gary C" <gary.c.wang@intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/1449859455-32609-1-git-send-email-daniel.vetter@ffwll.ch Reviewed-by: Sonika Jindal <sonika.jindal@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> (cherry picked from commit71a199bacb
) Signed-off-by: Jani Nikula <jani.nikula@intel.com>
This commit is contained in:
parent
57a2af6bbc
commit
97f9010af0
@ -1384,7 +1384,7 @@ intel_hdmi_detect(struct drm_connector *connector, bool force)
|
||||
while (!live_status && --retry) {
|
||||
live_status = intel_digital_port_connected(dev_priv,
|
||||
hdmi_to_dig_port(intel_hdmi));
|
||||
mdelay(10);
|
||||
msleep(10);
|
||||
}
|
||||
|
||||
if (!live_status)
|
||||
|
Loading…
Reference in New Issue
Block a user