aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-03-10 13:33:21 -0800
committerMartin Roth <martinroth@google.com>2017-03-13 17:08:22 +0100
commit42e605be195b50606c8113f7f6ade3dbcdab462e (patch)
tree27a80f1a72d47af86b875735e176baa09c50af63 /src/soc/intel
parente20a3191f58ffb37da3ed6414491d61dbfc7e583 (diff)
soc/intel/common: Indent code with tabs
Fix the following error detected by checkpatch.pl: ERROR: code indent should use tabs where possible TEST=Build and run on Galileo Gen2 Change-Id: I61c4f01216cb6c788cf6da988c414bbb9648d502 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18754 Tested-by: build bot (Jenkins) Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com> Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/common/acpi/acpi.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/intel/common/acpi/acpi.c b/src/soc/intel/common/acpi/acpi.c
index 3866e68e9a..63877ee668 100644
--- a/src/soc/intel/common/acpi/acpi.c
+++ b/src/soc/intel/common/acpi/acpi.c
@@ -162,16 +162,16 @@ static void generate_p_state_entries(int core, int cores_per_package)
/* Calculate CPU TDP in mW */
power_max = cpu_get_power_max();
- /* Write _PCT indicating use of FFixedHW */
+ /* Write _PCT indicating use of FFixedHW */
acpigen_write_empty_PCT();
- /* Write _PPC with no limit on supported P-state */
+ /* Write _PPC with no limit on supported P-state */
acpigen_write_PPC_NVS();
- /* Write PSD indicating configured coordination type */
+ /* Write PSD indicating configured coordination type */
acpigen_write_PSD_package(core, 1, coord_type);
- /* Add P-state entries in _PSS table */
- acpigen_write_name("_PSS");
+ /* Add P-state entries in _PSS table */
+ acpigen_write_name("_PSS");
/* Determine ratio points */
ratio_step = PSS_RATIO_STEP;