aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-03-11 19:49:48 +0100
committerFelix Held <felix-coreboot@felixheld.de>2021-03-12 20:31:46 +0000
commit8494d8a1653658e05cf86c6c1d50cbb9039c1c52 (patch)
tree23f3ce94bbe4f3e7ce75e3c5041bd4290476a1da /src/soc/amd
parentf14c05f14493f8960559172b4653f33e26357703 (diff)
soc/amd/common/amdblocks/smi.h: include types.h instead of stdint.h
gpe_configure_sci has a size_t type parameter, so we need to include types.h instead of stdint.h here. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I2879d5cf27c432871a2b9c5c90bdd539b97f9d3e Reviewed-on: https://review.coreboot.org/c/coreboot/+/51414 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/soc/amd')
-rw-r--r--src/soc/amd/common/block/include/amdblocks/smi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/smi.h b/src/soc/amd/common/block/include/amdblocks/smi.h
index 97edd2c9c6..60602a8f31 100644
--- a/src/soc/amd/common/block/include/amdblocks/smi.h
+++ b/src/soc/amd/common/block/include/amdblocks/smi.h
@@ -3,7 +3,7 @@
#ifndef AMD_BLOCK_SMI_H
#define AMD_BLOCK_SMI_H
-#include <stdint.h>
+#include <types.h>
enum smi_mode {
SMI_MODE_DISABLE = 0,