summaryrefslogtreecommitdiff
path: root/src/cpu/intel/turbo
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-03-15 18:31:03 -0700
committerLee Leahy <leroy.p.leahy@intel.com>2017-03-16 04:26:26 +0100
commit4dddda294f12c14d5e8310b84d1e9a60149e376a (patch)
tree6c089d9d228325aa13dee507e5966f77afd51c7c /src/cpu/intel/turbo
parentcdc50480c414df3b5f438f7f26a73df597e544ae (diff)
downloadcoreboot-4dddda294f12c14d5e8310b84d1e9a60149e376a.tar.xz
cpu/intel: Fix the remaining issues detected by checkpatch
Fix the following error and warnings detected by checkpatch.pl: ERROR: switch and case should be at the same indent WARNING: Consecutive strings are generally better as a single string WARNING: static const char * array should probably be static const char * const TEST=Build and run on Galileo Gen2 Change-Id: I03d5d0d2db0d5e9b33c8ec807b236fe229bcc8f3 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18851 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/cpu/intel/turbo')
-rw-r--r--src/cpu/intel/turbo/turbo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/intel/turbo/turbo.c b/src/cpu/intel/turbo/turbo.c
index 7d15c81a7b..ac6627372b 100644
--- a/src/cpu/intel/turbo/turbo.c
+++ b/src/cpu/intel/turbo/turbo.c
@@ -42,7 +42,7 @@ static inline void set_global_turbo_state(int state)
}
#endif
-static const char *turbo_state_desc[] = {
+static const char * const turbo_state_desc[] = {
[TURBO_UNKNOWN] = "unknown",
[TURBO_UNAVAILABLE] = "unavailable",
[TURBO_DISABLED] = "available but hidden",