diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-11-18 15:07:33 +0100 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2022-11-26 23:39:16 +0000 |
commit | 9018dee6856791ab599463a771826936c20a80bb (patch) | |
tree | 079e966e6b894bb9c81ca25e9e783c28947e0e64 /src/soc/intel/xeon_sp/cpx | |
parent | 5aa98964fb4e2e8c10b1663f8d6a3faa2b700410 (diff) |
src/soc/intel: Remove unnecessary space after casts
Change-Id: I098104f32dd7c66d7bb79588ef315a242c3889ba
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69806
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Diffstat (limited to 'src/soc/intel/xeon_sp/cpx')
-rw-r--r-- | src/soc/intel/xeon_sp/cpx/hob_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/xeon_sp/cpx/hob_display.c b/src/soc/intel/xeon_sp/cpx/hob_display.c index b3ad455d67..961f9080bb 100644 --- a/src/soc/intel/xeon_sp/cpx/hob_display.c +++ b/src/soc/intel/xeon_sp/cpx/hob_display.c @@ -226,7 +226,7 @@ void soc_display_hob(const struct hob_header *hob) if (hob->type != HOB_TYPE_GUID_EXTENSION) return; - guid = (uint8_t *) fsp_hob_header_to_resource(hob); + guid = (uint8_t *)fsp_hob_header_to_resource(hob); if (fsp_guid_compare(guid, fsp_hob_iio_uds_guid)) soc_display_iio_universal_data_hob((const IIO_UDS *)(guid + 16)); |