summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-03-15 13:59:00 -0700
committerLee Leahy <leroy.p.leahy@intel.com>2017-03-16 04:10:47 +0100
commit5f94541329eddb531605c32d73467c46b9d707df (patch)
treed571a11e54dc443092ee3a8b91f5da7643616563 /src
parent28c3f23b4627966b2112feaedc228977c4425a87 (diff)
downloadcoreboot-5f94541329eddb531605c32d73467c46b9d707df.tar.xz
src/cpu/x86: Remove space between * and variable name
Fix the following error detected by checkpatch.pl: ERROR: "foo * bar" should be "foo *bar" TEST=Build and run on Galileo Gen2 Change-Id: I8b5342df3f42dbb4576aecf5b0a59f195ae8511e Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18839 Tested-by: build bot (Jenkins) Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src')
-rw-r--r--src/cpu/x86/car.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cpu/x86/car.c b/src/cpu/x86/car.c
index f9b427a4b0..825255e7db 100644
--- a/src/cpu/x86/car.c
+++ b/src/cpu/x86/car.c
@@ -46,8 +46,8 @@ void *car_get_var_ptr(void *var)
{
char *migrated_base = NULL;
int offset;
- void * _car_start = _car_relocatable_data_start;
- void * _car_end = _car_relocatable_data_end;
+ void *_car_start = _car_relocatable_data_start;
+ void *_car_end = _car_relocatable_data_end;
/* If the cache-as-ram has not been migrated return the pointer
* passed in. */
@@ -83,9 +83,9 @@ void *car_get_var_ptr(void *var)
*/
void *car_sync_var_ptr(void *var)
{
- void ** mig_var = car_get_var_ptr(var);
- void * _car_start = _car_relocatable_data_start;
- void * _car_end = _car_relocatable_data_end;
+ void **mig_var = car_get_var_ptr(var);
+ void *_car_start = _car_relocatable_data_start;
+ void *_car_end = _car_relocatable_data_end;
/* Not moved or migrated yet. */
if (mig_var == var)