diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-09 09:50:28 -0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-03-13 17:42:02 +0100 |
commit | 1d20fe77cb854db420d46bb39b01b53e1e02d37c (patch) | |
tree | 53b5d8d0ded6d51b4707733ad4044185eedb32ed /src/soc/intel/apollolake/chip.c | |
parent | 320b7ca44b0d18d97ac226b5fb63b6763ee6ac7c (diff) | |
download | coreboot-1d20fe77cb854db420d46bb39b01b53e1e02d37c.tar.xz |
soc/intel/apollolake: Indent code using tabs
Fix the following error and warnings detected by checkpatch.pl:
ERROR: code indent should use tabs where possible
WARNING: please, no spaces at the start of a line
WARNING: please, no space before tabs
TEST=Build for reef
Change-Id: Id7a758463b95274c5e8bbdd67da0955f1ae78aac
Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18721
Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/soc/intel/apollolake/chip.c')
-rw-r--r-- | src/soc/intel/apollolake/chip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/apollolake/chip.c b/src/soc/intel/apollolake/chip.c index 61ffc38a90..9ac047e142 100644 --- a/src/soc/intel/apollolake/chip.c +++ b/src/soc/intel/apollolake/chip.c @@ -129,7 +129,7 @@ struct pci_operations soc_pci_ops = { static void pci_domain_set_resources(device_t dev) { - assign_resources(dev->link_list); + assign_resources(dev->link_list); } static struct device_operations pci_domain_ops = { @@ -448,7 +448,7 @@ static void parse_devicetree(FSP_S_CONFIG *silconfig) void platform_fsp_silicon_init_params_cb(FSPS_UPD *silupd) { - FSP_S_CONFIG *silconfig = &silupd->FspsConfig; + FSP_S_CONFIG *silconfig = &silupd->FspsConfig; static struct soc_intel_apollolake_config *cfg; uint8_t port; |