summaryrefslogtreecommitdiffstats
path: root/src/drivers
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2024-04-01 11:10:17 +0530
committerSubrata Banik <subratabanik@google.com>2024-04-03 04:06:31 +0000
commit05a7474b745f3521a1a4f73f94a9bca53cbba684 (patch)
treeabb2446faa02b3c47de56ce48717722680eb797a /src/drivers
parentbb07750b77d67a35d1dcf91c5b42a01e1a8c8218 (diff)
downloadcoreboot-05a7474b745f3521a1a4f73f94a9bca53cbba684.tar.gz
coreboot-05a7474b745f3521a1a4f73f94a9bca53cbba684.tar.bz2
coreboot-05a7474b745f3521a1a4f73f94a9bca53cbba684.zip
drivers/intel/fsp2_0: Use coreboot uint8_t type for consistency
This patch replaces UINT8 with uint8_t to align with coreboot's standard data type conventions. This promotes consistency within the codebase. BUG=b:242829490 TEST=Verified firmware splash screen functionality on google/rex0. Change-Id: I524bf6dc83e4330f155e21691f6b161643f29bd8 Signed-off-by: Subrata Banik <subratabanik@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/81571 Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/intel/fsp2_0/fsp_gop_blt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/intel/fsp2_0/fsp_gop_blt.c b/src/drivers/intel/fsp2_0/fsp_gop_blt.c
index a43364a9893b..8b645022245f 100644
--- a/src/drivers/intel/fsp2_0/fsp_gop_blt.c
+++ b/src/drivers/intel/fsp2_0/fsp_gop_blt.c
@@ -151,7 +151,7 @@ static void *fill_blt_buffer(efi_bmp_image_header *header,
die("%s: out of memory. Consider increasing the `CONFIG_HEAP_SIZE`\n",
__func__);
- bmp_image = ((UINT8 *)logo_ptr) + header->ImageOffset;
+ bmp_image = ((uint8_t *)logo_ptr) + header->ImageOffset;
bmp_image_header = bmp_image;
gop_blt_buffer = gop_blt_ptr;
bmp_color_map = (efi_bmp_color_map *)(logo_ptr + sizeof(efi_bmp_image_header));