Aaron Durbin (adurbin@chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9968
-gerrit
commit c486cbbff54b96a071b5b2dc6ddac0ad102f53f8 Author: Aaron Durbin adurbin@chromium.org Date: Wed Apr 22 12:08:55 2015 -0500
vboot: #include "fmap.h" for declarations
In the spirit of include what you use actually #include the header necessary for fmap calls.
Change-Id: I7acede51d7139234c0520281799dad3a8d33454f Signed-off-by: Aaron Durbin adurbin@chromium.org --- src/vendorcode/google/chromeos/vboot_common.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/src/vendorcode/google/chromeos/vboot_common.c b/src/vendorcode/google/chromeos/vboot_common.c index 3c1a9c3..bacacd4 100644 --- a/src/vendorcode/google/chromeos/vboot_common.c +++ b/src/vendorcode/google/chromeos/vboot_common.c @@ -26,6 +26,7 @@ #include <string.h>
#include "chromeos.h" +#include "fmap.h" #include "vboot_common.h" #include "vboot_handoff.h"