diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-05-15 21:10:44 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-05-29 20:28:41 +0000 |
commit | ab89edbccf6e614213bbd88f5dbd5c8bf9a5d4c6 (patch) | |
tree | 0bedd57bb42a9191d07947cfb072b1dda44b5a8e /src/southbridge/intel/ibexpeak | |
parent | 51401c30509d189d07a8a94958bdecdfd8b7667d (diff) | |
download | coreboot-ab89edbccf6e614213bbd88f5dbd5c8bf9a5d4c6.tar.xz |
src/southbridge: Add missing 'include <types.h>'
<types.h> is supposed to provide <stdint.h> and <stddef.h>.
When <types.h> is included, <stdint.h> and/or <stddef.h> is removed.
Change-Id: I4d8628e4ce3c7f80da2590b4cad618b290e0d513
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32809
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Lijian Zhao <lijian.zhao@intel.com>
Diffstat (limited to 'src/southbridge/intel/ibexpeak')
-rw-r--r-- | src/southbridge/intel/ibexpeak/sata.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/southbridge/intel/ibexpeak/sata.c b/src/southbridge/intel/ibexpeak/sata.c index 112445bb65..e03f8b5884 100644 --- a/src/southbridge/intel/ibexpeak/sata.c +++ b/src/southbridge/intel/ibexpeak/sata.c @@ -21,9 +21,11 @@ #include <device/device.h> #include <device/pci.h> #include <device/pci_ids.h> -#include "pch.h" #include <pc80/mc146818rtc.h> #include <acpi/sata.h> +#include <types.h> + +#include "pch.h" typedef struct southbridge_intel_ibexpeak_config config_t; |