soc/intel/skylake: Remove space after type cast

Unify the file with the Cannon Lake version
    `src/soc/intel/cannonlake/smmrelocate.c`. Now they are identical.

Change-Id: I8cae66038edb3966604c92597986839badd617c5
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/42198
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
This commit is contained in:
Paul Menzel 2020-06-08 16:48:02 +02:00 committed by Patrick Georgi
parent f1b9006fd6
commit 0f1394abd6
1 changed files with 2 additions and 2 deletions

View File

@ -174,8 +174,8 @@ static void setup_ied_area(struct smm_relocation_params *params)
ied_base = (void *)params->ied_base;
printk(BIOS_DEBUG, "IED base = 0x%08x\n", (u32) params->ied_base);
printk(BIOS_DEBUG, "IED size = 0x%08x\n", (u32) params->ied_size);
printk(BIOS_DEBUG, "IED base = 0x%08x\n", (u32)params->ied_base);
printk(BIOS_DEBUG, "IED size = 0x%08x\n", (u32)params->ied_size);
/* Place IED header at IEDBASE. */
memcpy(ied_base, &ied, sizeof(ied));