[<prev] [next>] [day] [month] [year] [list]
Message-Id: <74a396e4bd6ae83ef1b3d708e51a468a3ab1ea70.1376493949.git.tuukka.tikkanen@linaro.org>
Date: Wed, 14 Aug 2013 19:02:38 +0300
From: tuukka.tikkanen@...aro.org
To: rjw@...k.pl, daniel.lezcano@...aro.org, linux-pm@...r.kernel.org
Cc: private-pmwg@...aro.org, linux-kernel@...r.kernel.org,
Tuukka Tikkanen <tuukka.tikkanen@...aro.org>
Subject: [PATCH 5/8] Cpuidle: Fix menu_device->intervals type
From: Tuukka Tikkanen <tuukka.tikkanen@...aro.org>
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@...aro.org>
---
drivers/cpuidle/governors/menu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/cpuidle/governors/menu.c b/drivers/cpuidle/governors/menu.c
index fe2dd04..0b37ee4 100644
--- a/drivers/cpuidle/governors/menu.c
+++ b/drivers/cpuidle/governors/menu.c
@@ -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;
};
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists