diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-05-15 21:05:37 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-05-29 20:27:52 +0000 |
commit | bd1683da29d5688f97fcc43bef3e0df74e4196f9 (patch) | |
tree | 0f124f816bcfc3c6a9fe6459a0c5df5997eddd52 /src/drivers/generic/bayhub/bh720.h | |
parent | b12ece98b09dd88634d93bcb41ca5c4cb9d86364 (diff) | |
download | coreboot-bd1683da29d5688f97fcc43bef3e0df74e4196f9.tar.xz |
src/{device,drivers}: Add missing 'include <types.h>'
<types.h> is supposed to provide <stdint.h> and <stddef.h>.
So when <types.h> is included, <stdint.h> and/or <stddef.h> is removed.
Change-Id: I3395715f9e2b03175089186ab2e57d9e508fc87c
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32806
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Lijian Zhao <lijian.zhao@intel.com>
Diffstat (limited to 'src/drivers/generic/bayhub/bh720.h')
-rw-r--r-- | src/drivers/generic/bayhub/bh720.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/generic/bayhub/bh720.h b/src/drivers/generic/bayhub/bh720.h index 3183bf1a84..ecea513bfb 100644 --- a/src/drivers/generic/bayhub/bh720.h +++ b/src/drivers/generic/bayhub/bh720.h @@ -15,6 +15,8 @@ * GNU General Public License for more details. */ +#include <types.h> + enum { BH720_PROTECT = 0xd0, BH720_PROTECT_LOCK_OFF = 0, |