diff options
author | Boris Ostrovsky <boris.ostrovsky@amd.com> | 2012-03-13 14:55:10 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-03-30 03:23:30 -0400 |
commit | 02401c06b7f6bec65f314e3cec7894502c973501 (patch) | |
tree | 3dd8ec58dc23c93b5dd50ce628953669883e33ef /include/linux/cpuidle.h | |
parent | 1a022e3f1be11730bd8747b1af96a0274bf6356e (diff) |
cpuidle: power_usage should be declared signed integer
power_usage is always assigned a negative value and should be declared
a signed integer
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@amd.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/linux/cpuidle.h')
-rw-r--r-- | include/linux/cpuidle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index d557bcd0ada7..6c26a3da0e03 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h | |||
@@ -44,7 +44,7 @@ struct cpuidle_state { | |||
44 | 44 | ||
45 | unsigned int flags; | 45 | unsigned int flags; |
46 | unsigned int exit_latency; /* in US */ | 46 | unsigned int exit_latency; /* in US */ |
47 | unsigned int power_usage; /* in mW */ | 47 | int power_usage; /* in mW */ |
48 | unsigned int target_residency; /* in US */ | 48 | unsigned int target_residency; /* in US */ |
49 | unsigned int disable; | 49 | unsigned int disable; |
50 | 50 | ||