From 66b0c86ae4a3f29e998114ec4a1a4824922e0d9a Mon Sep 17 00:00:00 2001 From: Yongcong Du Date: Sat, 7 Jul 2012 19:41:27 +0800 Subject: [PATCH] cpuidle: rename CpuidleStats to CpuidleStat Signed-off-by: Fredrik Holmqvist --- headers/os/drivers/cpuidle.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/os/drivers/cpuidle.h b/headers/os/drivers/cpuidle.h index 67d8f307a4..7234429283 100644 --- a/headers/os/drivers/cpuidle.h +++ b/headers/os/drivers/cpuidle.h @@ -17,15 +17,15 @@ extern "C" { #define B_CPUIDLE_MODULE_NAME "idle/generic/cpuidle/v1" -struct CpuidleStats { +struct CpuidleStat { uint64 usageCount; bigtime_t usageTime; }; struct CpuidleInfo { - int32 cstateSleep; - CpuidleStats stats[CPUIDLE_CSTATE_MAX]; + int32 cstateSleep; + CpuidleStat stats[CPUIDLE_CSTATE_MAX]; };