commit | 09c87e2f79eb336bd313090be8113ae29345b8f5 | [log] [tgz] |
---|---|---|
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | Wed Oct 16 22:59:33 2013 +0200 |
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | Wed Oct 16 22:59:33 2013 +0200 |
tree | a5caa91864fcac4343abd09c9d59fe27cf305682 | |
parent | 52e0a509e5d6f902ec26bc2a8bb02b137dc453be [diff] |
intel_pstate: Fix type mismatch warning The expression in line 398 of intel_pstate.c causes the following warning to be emitted: drivers/cpufreq/intel_pstate.c:398:3: warning: left shift count >= width of type which happens because unsigned long is 32-bit on some architectures. Fix that by using a helper u64 variable and simplify the code slightly. Tested-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>