[Intel-gfx] [PATCH 5/7] drm/i915: Drop VLV checks from rc6p and rc6pp sysfs files

Deepak S deepak.s at linux.intel.com
Mon Jan 19 19:21:18 PST 2015


On Monday 19 January 2015 05:20 PM, ville.syrjala at linux.intel.com wrote:
> From: Ville Syrjälä <ville.syrjala at linux.intel.com>
>
> We don't register the rc6p and rc6pp sysfs files on VLV, so there's no
> point in having any VLV checks in them. Drop the checks.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
> ---
>   drivers/gpu/drm/i915/i915_sysfs.c | 4 ----
>   1 file changed, 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_sysfs.c b/drivers/gpu/drm/i915/i915_sysfs.c
> index 4a5af69..04174f0 100644
> --- a/drivers/gpu/drm/i915/i915_sysfs.c
> +++ b/drivers/gpu/drm/i915/i915_sysfs.c
> @@ -116,8 +116,6 @@ show_rc6p_ms(struct device *kdev, struct device_attribute *attr, char *buf)
>   {
>   	struct drm_minor *dminor = dev_to_drm_minor(kdev);
>   	u32 rc6p_residency = calc_residency(dminor->dev, GEN6_GT_GFX_RC6p);
> -	if (IS_VALLEYVIEW(dminor->dev))
> -		rc6p_residency = 0;
>   	return snprintf(buf, PAGE_SIZE, "%u\n", rc6p_residency);
>   }
>   
> @@ -126,8 +124,6 @@ show_rc6pp_ms(struct device *kdev, struct device_attribute *attr, char *buf)
>   {
>   	struct drm_minor *dminor = dev_to_drm_minor(kdev);
>   	u32 rc6pp_residency = calc_residency(dminor->dev, GEN6_GT_GFX_RC6pp);
> -	if (IS_VALLEYVIEW(dminor->dev))
> -		rc6pp_residency = 0;
>   	return snprintf(buf, PAGE_SIZE, "%u\n", rc6pp_residency);
>   }
>   

Reviewed-by: Deepak S<deepak.s at linux.intel.com>



More information about the Intel-gfx mailing list