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/car | |
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/car')
-rw-r--r-- | src/cpu/amd/car/post_cache_as_ram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/amd/car/post_cache_as_ram.c b/src/cpu/amd/car/post_cache_as_ram.c index 2fb46d286a..a96811365a 100644 --- a/src/cpu/amd/car/post_cache_as_ram.c +++ b/src/cpu/amd/car/post_cache_as_ram.c @@ -121,7 +121,7 @@ static void vErrata343(void) wrmsr(BU_CFG2_MSR, msr); } -asmlinkage void * post_cache_as_ram(void) +asmlinkage void *post_cache_as_ram(void) { uint32_t family = amd_fam1x_cpu_family(); int s3resume = 0; |