From: Lei Wen Date: Tue, 9 Nov 2010 23:39:23 +0000 (+0800) Subject: env_mmc: fix compile warning X-Git-Tag: v2010.12-rc2~65 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6d1d51b32b9dc26be42ab95a61346050f9de7665;p=kernel%2Fu-boot.git env_mmc: fix compile warning hexport would complain implicit declaration, if we don't add the include file. env_mmc.c: In function 'saveenv': env_mmc.c:109: warning: implicit declaration of function 'hexport' Signed-off-by: Lei Wen --- diff --git a/common/env_mmc.c b/common/env_mmc.c index 3d7fceb..7c9392c 100644 --- a/common/env_mmc.c +++ b/common/env_mmc.c @@ -29,6 +29,7 @@ #include #include #include +#include #include /* references to names in env_common.c */