diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-05-15 21:09:30 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-05-29 20:28:27 +0000 |
commit | 51401c30509d189d07a8a94958bdecdfd8b7667d (patch) | |
tree | 97f7829ad4d84e19a069f93be56b369abb933e8d /src/northbridge/intel/gm45 | |
parent | 5fd93e05820d742fac5dbc1b371b464a88bb9043 (diff) | |
download | coreboot-51401c30509d189d07a8a94958bdecdfd8b7667d.tar.xz |
src/northbridge: 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: Iad5367bed844b866b2ad87639eee29a16d9a99ed
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32808
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Lijian Zhao <lijian.zhao@intel.com>
Diffstat (limited to 'src/northbridge/intel/gm45')
-rw-r--r-- | src/northbridge/intel/gm45/gma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/northbridge/intel/gm45/gma.c b/src/northbridge/intel/gm45/gma.c index 3549b49234..a2de7f0fb0 100644 --- a/src/northbridge/intel/gm45/gma.c +++ b/src/northbridge/intel/gm45/gma.c @@ -27,6 +27,7 @@ #include <commonlib/helpers.h> #include <cbmem.h> #include <southbridge/intel/i82801ix/nvs.h> +#include <types.h> #include "drivers/intel/gma/i915_reg.h" #include "chip.h" |