diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-07-08 12:30:02 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-07-09 09:26:18 +0000 |
commit | 6c9737b1ac5b71f705350a960dee0e68b9afb440 (patch) | |
tree | e5c11d8b1586d034b04e2517752c21aaacc3995b /src/cpu/amd/pi | |
parent | 2106638ec2d7869f396310882bf5e9fa52dbf3c0 (diff) |
src/{arch,commonlib,cpu}: Use "foo *bar" instead of "foo* bar"
Change-Id: I8e4118c5c5d70719ad7dc5f9ff9f86d93fa498ac
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26942
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/cpu/amd/pi')
-rw-r--r-- | src/cpu/amd/pi/romstage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/amd/pi/romstage.c b/src/cpu/amd/pi/romstage.c index 9a5fbac003..aa14826149 100644 --- a/src/cpu/amd/pi/romstage.c +++ b/src/cpu/amd/pi/romstage.c @@ -28,7 +28,7 @@ void asmlinkage early_all_cores(void) amd_initmmio(); } -void * asmlinkage romstage_main(unsigned long bist) +void *asmlinkage romstage_main(unsigned long bist) { int s3resume = 0; u8 initial_apic_id = cpuid_ebx(1) >> 24; @@ -45,7 +45,7 @@ void * asmlinkage romstage_main(unsigned long bist) stack_top += HIGH_ROMSTAGE_STACK_SIZE; printk(BIOS_DEBUG, "Move CAR stack.\n"); - return (void*)stack_top; + return (void *)stack_top; } void asmlinkage romstage_after_car(void) |