diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-07-16 09:48:27 +0200 |
---|---|---|
committer | Martin L Roth <gaumless@tutanota.com> | 2022-07-17 21:59:05 +0000 |
commit | 68fc51faf2cc83742b527b68a9009b81428b9ff2 (patch) | |
tree | 5cac120c129c4c382301ee503f08e59f222ee471 /src/soc/amd/common/pi/image.c | |
parent | f9b535eecfda5065182aae9ec031956826cd1804 (diff) |
soc/amd/common: Fix some white spaces issues
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: I54438978db13ba00188e53239f7034d1b258e912
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65900
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/amd/common/pi/image.c')
-rw-r--r-- | src/soc/amd/common/pi/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/common/pi/image.c b/src/soc/amd/common/pi/image.c index 03a2a473a0..79dd736b02 100644 --- a/src/soc/amd/common/pi/image.c +++ b/src/soc/amd/common/pi/image.c @@ -35,7 +35,7 @@ void *amd_find_image(const void *start_address, const void *end_address, while ((current_ptr >= start) && (current_ptr < end)) { if (IMAGE_SIGNATURE == *((uint32_t *)current_ptr)) { - image_ptr = (AMD_IMAGE_HEADER *) current_ptr; + image_ptr = (AMD_IMAGE_HEADER *)current_ptr; /* Check if the image has the desired module */ if (validate_image((void *)image_ptr->ModuleInfoOffset, |