From 927f06a565dcbf973739e2c91cc1ea2814338609 Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Mon, 19 Jun 2017 10:53:18 -0700 Subject: commonlib/storage: Fix MMC build Add missing includes to build mmc.c. TEST=Build and run on Galileo Gen2 Change-Id: I0dea597272e5ece97843704a159aa546a8d77ff0 Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/20271 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/commonlib/storage/mmc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/commonlib/storage/mmc.c b/src/commonlib/storage/mmc.c index 4289b01f33..b8a3b67495 100644 --- a/src/commonlib/storage/mmc.c +++ b/src/commonlib/storage/mmc.c @@ -21,11 +21,13 @@ #include #include +#include #include "sd_mmc.h" #include "mmc.h" #include "sd_mmc.h" #include "storage.h" #include +#include /* We pass in the cmd since otherwise the init seems to fail */ static int mmc_send_op_cond_iter(struct storage_media *media, -- cgit v1.2.3