]> git.karo-electronics.de Git - karo-tx-linux.git/commit
drm/i915: sanitize enable_rc6 option
authorImre Deak <imre.deak@intel.com>
Fri, 18 Apr 2014 13:01:02 +0000 (16:01 +0300)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 25 Apr 2014 13:40:57 +0000 (15:40 +0200)
commit901cd9beb6149da65abf1c57aa19af8ce6da895e
tree1f5f8498c312ef3aca1c9926a0164aeb3a16b964
parent2775473429556dae20207eb1b217bc5adffb8692
drm/i915: sanitize enable_rc6 option

Atm, an invalid enable_rc6 module option will be silently ignored, so
emit an info message about it. Doing an early sanitization we can also
reuse intel_enable_rc6() in a follow-up patch to see if RC6 is actually
enabled. Currently the caller would have to filter a non-zero return
value based on the platform we are running on. For example on VLV with
i915.enable_rc6 set to 2, RC6 won't be enabled but atm
intel_enable_rc6() would still return 2 in this case.

v2:
- simplify the platform check condition (Ville)

Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_pm.c