Commit 5a953add authored by Ben Widawsky's avatar Ben Widawsky Committed by Daniel Vetter

drm/i915: Fix coding style for RPS

Introduced:
commit b8a5ff8d
Author: Jeff McGee <jeff.mcgee@intel.com>
Date:   Tue Feb 4 11:37:01 2014 -0600

    drm/i915: Update rps interrupt limits

Cc: Jeff McGee <jeff.mcgee@intel.com>
Signed-off-by: default avatarBen Widawsky <ben@bwidawsk.net>
Reviewed-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent d060c169
...@@ -356,12 +356,12 @@ static ssize_t gt_max_freq_mhz_store(struct device *kdev, ...@@ -356,12 +356,12 @@ static ssize_t gt_max_freq_mhz_store(struct device *kdev,
valleyview_set_rps(dev, val); valleyview_set_rps(dev, val);
else else
gen6_set_rps(dev, val); gen6_set_rps(dev, val);
} } else if (!IS_VALLEYVIEW(dev)) {
else if (!IS_VALLEYVIEW(dev)) /* We still need gen6_set_rps to process the new max_delay and
/* We still need gen6_set_rps to process the new max_delay * update the interrupt limits even though frequency request is
and update the interrupt limits even though frequency * unchanged. */
request is unchanged. */
gen6_set_rps(dev, dev_priv->rps.cur_delay); gen6_set_rps(dev, dev_priv->rps.cur_delay);
}
mutex_unlock(&dev_priv->rps.hw_lock); mutex_unlock(&dev_priv->rps.hw_lock);
...@@ -430,12 +430,12 @@ static ssize_t gt_min_freq_mhz_store(struct device *kdev, ...@@ -430,12 +430,12 @@ static ssize_t gt_min_freq_mhz_store(struct device *kdev,
valleyview_set_rps(dev, val); valleyview_set_rps(dev, val);
else else
gen6_set_rps(dev, val); gen6_set_rps(dev, val);
} } else if (!IS_VALLEYVIEW(dev)) {
else if (!IS_VALLEYVIEW(dev)) /* We still need gen6_set_rps to process the new min_delay and
/* We still need gen6_set_rps to process the new min_delay * update the interrupt limits even though frequency request is
and update the interrupt limits even though frequency * unchanged. */
request is unchanged. */
gen6_set_rps(dev, dev_priv->rps.cur_delay); gen6_set_rps(dev, dev_priv->rps.cur_delay);
}
mutex_unlock(&dev_priv->rps.hw_lock); mutex_unlock(&dev_priv->rps.hw_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment