From 2710492d224afb65de8f53f437b17a248b170388 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Sat, 24 Aug 2024 00:45:03 +0200 Subject: soc/amd/common/psp: consistently use uint[8,16,32,64]_t data types Use the uint[8,16,32,64]_t data types everywhere instead of a mixture of uint[8,16,32,64]_t and u[8,16,32,64] data types for consistency. Suggested-by: Martin Roth Signed-off-by: Felix Held Change-Id: I36151ecf94619afaf690dbb73834fcff3c51fdac Reviewed-on: https://review.coreboot.org/c/coreboot/+/84067 Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier Reviewed-by: Marshall Dawson --- src/soc/amd/common/block/include/amdblocks/psp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/soc/amd/common/block/include') diff --git a/src/soc/amd/common/block/include/amdblocks/psp.h b/src/soc/amd/common/block/include/amdblocks/psp.h index 061e79def5..1ab3385314 100644 --- a/src/soc/amd/common/block/include/amdblocks/psp.h +++ b/src/soc/amd/common/block/include/amdblocks/psp.h @@ -77,7 +77,7 @@ enum psp_blob_type { * Notify PSP that the system is entering a sleep state. sleep_state uses the * same definition as Pm1Cnt[SlpTyp], typically 0, 1, 3, 4, 5. */ -void psp_notify_sx_info(u8 sleep_type); +void psp_notify_sx_info(uint8_t sleep_type); int psp_load_named_blob(enum psp_blob_type type, const char *name); -- cgit v1.2.3