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>
This commit is contained in:
Lee Leahy 2017-03-15 13:59:00 -07:00
parent 28c3f23b46
commit 5f94541329
1 changed files with 5 additions and 5 deletions

View File

@ -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)