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:
parent
28c3f23b46
commit
5f94541329
|
@ -46,8 +46,8 @@ void *car_get_var_ptr(void *var)
|
||||||
{
|
{
|
||||||
char *migrated_base = NULL;
|
char *migrated_base = NULL;
|
||||||
int offset;
|
int offset;
|
||||||
void * _car_start = _car_relocatable_data_start;
|
void *_car_start = _car_relocatable_data_start;
|
||||||
void * _car_end = _car_relocatable_data_end;
|
void *_car_end = _car_relocatable_data_end;
|
||||||
|
|
||||||
/* If the cache-as-ram has not been migrated return the pointer
|
/* If the cache-as-ram has not been migrated return the pointer
|
||||||
* passed in. */
|
* passed in. */
|
||||||
|
@ -83,9 +83,9 @@ void *car_get_var_ptr(void *var)
|
||||||
*/
|
*/
|
||||||
void *car_sync_var_ptr(void *var)
|
void *car_sync_var_ptr(void *var)
|
||||||
{
|
{
|
||||||
void ** mig_var = car_get_var_ptr(var);
|
void **mig_var = car_get_var_ptr(var);
|
||||||
void * _car_start = _car_relocatable_data_start;
|
void *_car_start = _car_relocatable_data_start;
|
||||||
void * _car_end = _car_relocatable_data_end;
|
void *_car_end = _car_relocatable_data_end;
|
||||||
|
|
||||||
/* Not moved or migrated yet. */
|
/* Not moved or migrated yet. */
|
||||||
if (mig_var == var)
|
if (mig_var == var)
|
||||||
|
|
Loading…
Reference in New Issue