diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-15 17:40:50 -0700 |
---|---|---|
committer | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-16 04:13:24 +0100 |
commit | 9d62e7e75e43d6737df9d0ab5603446d7f5e408d (patch) | |
tree | 318963e23b89ca65cc05502774d0af1e831af578 /src/cpu/intel/car | |
parent | 7b5f12b9b2695359b6ccb4d62bdb868166c7f8d1 (diff) | |
download | coreboot-9d62e7e75e43d6737df9d0ab5603446d7f5e408d.tar.xz |
cpu/intel: Fix the spacing issues
Fix the following errors and warnings detected by checkpatch.pl:
ERROR: spaces required around that '=' (ctx:VxV)
ERROR: space required after that ',' (ctx:VxV)
ERROR: space prohibited after that open parenthesis '('
ERROR: space prohibited before that close parenthesis ')'
ERROR: need consistent spacing around '-' (ctx:WxV)
ERROR: spaces required around that '>' (ctx:VxV)
ERROR: need consistent spacing around '>>' (ctx:WxV)
ERROR: need consistent spacing around '<<' (ctx:VxW)
ERROR: spaces required around that '||' (ctx:VxV)
ERROR: "foo * bar" should be "foo *bar"
ERROR: "(foo*)" should be "(foo *)"
WARNING: space prohibited between function name and open parenthesis '('
WARNING: storage class should be at the beginning of the declaration
TEST=Build and run on Galileo Gen2
Change-Id: I6602fbc8602171ab6c2f3b6c204558ad2c811179
Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18847
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/cpu/intel/car')
-rw-r--r-- | src/cpu/intel/car/romstage.c | 4 | ||||
-rw-r--r-- | src/cpu/intel/car/romstage_legacy.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/cpu/intel/car/romstage.c b/src/cpu/intel/car/romstage.c index 0f67c26a8c..14776126c8 100644 --- a/src/cpu/intel/car/romstage.c +++ b/src/cpu/intel/car/romstage.c @@ -19,7 +19,7 @@ #define DCACHE_RAM_ROMSTAGE_STACK_SIZE 0x2000 -void * asmlinkage romstage_main(unsigned long bist) +asmlinkage void *romstage_main(unsigned long bist) { int i; void *romstage_stack_after_car; @@ -47,7 +47,7 @@ void * asmlinkage romstage_main(unsigned long bist) return romstage_stack_after_car; } -void asmlinkage romstage_after_car(void) +asmlinkage void romstage_after_car(void) { /* Load the ramstage. */ run_ramstage(); diff --git a/src/cpu/intel/car/romstage_legacy.c b/src/cpu/intel/car/romstage_legacy.c index 560cd7af2a..2de6691f45 100644 --- a/src/cpu/intel/car/romstage_legacy.c +++ b/src/cpu/intel/car/romstage_legacy.c @@ -13,8 +13,8 @@ #include <cpu/intel/romstage.h> -void * asmlinkage romstage_main(unsigned long bist) +asmlinkage void *romstage_main(unsigned long bist) { mainboard_romstage_entry(bist); - return (void*)CONFIG_RAMTOP; + return (void *)CONFIG_RAMTOP; } |