diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-07-12 22:50:12 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-07-15 02:27:27 +0000 |
commit | 83ea46b933ffe6ae022bf013524c99f6fb99e5d1 (patch) | |
tree | d6b28566bf732d84d3f35654a97d7efb6039d1c2 /src/lib | |
parent | b56224408ef6ff152ba1544ea6c38cad26576c97 (diff) |
lib/bootmode: Include 'vboot/misc.h'
Don't include unneeded 'vendorcode/google/chromeos/chromeos.h', when
only 'vboot/misc.h' is used.
Change-Id: I99484c29e5a3e13f1fea277f13c2f08a8a46bd88
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34295
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Joel Kitching <kitching@google.com>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/bootmode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/bootmode.c b/src/lib/bootmode.c index 51bbbe5dc0..083fd9d49d 100644 --- a/src/lib/bootmode.c +++ b/src/lib/bootmode.c @@ -16,7 +16,7 @@ #include <assert.h> #include <bootmode.h> -#include <vendorcode/google/chromeos/chromeos.h> +#include <security/vboot/misc.h> static int gfx_init_done = -1; |