forked from Minki/linux
cpuidle: Fix menu_device->intervals type
Struct menu_device member intervals is declared as u32, but the value stored is (unsigned) int. The type is changed to match the value being stored. Signed-off-by: Tuukka Tikkanen <tuukka.tikkanen@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
4cd46bca8c
commit
939e33b7fc
@ -118,7 +118,7 @@ struct menu_device {
|
||||
unsigned int exit_us;
|
||||
unsigned int bucket;
|
||||
u64 correction_factor[BUCKETS];
|
||||
u32 intervals[INTERVALS];
|
||||
unsigned int intervals[INTERVALS];
|
||||
int interval_ptr;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user