From: Mateusz Zalega Date: Wed, 30 Apr 2014 11:04:15 +0000 (+0200) Subject: mmc: mmc header fix X-Git-Tag: v2014.07-rc1~8^2~9 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=07a2d42cd4964168b98c895dd2bb9c0c8275992d;p=u-boot mmc: mmc header fix Structure definition used type block_dev_desc_t, defined in part.h, which wasn't included in mmc.h. It worked only in circumstances when common.h, or another header using part.h was incuded in implementation files. Change-Id: I5b203928b689887e3e78beb00a378955e0553eb7 Signed-off-by: Mateusz Zalega Acked-by: Pantelis Antoniou Cc: Minkyu Kang --- diff --git a/include/mmc.h b/include/mmc.h index 42d01251b5..bc11f45a6f 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -12,6 +12,7 @@ #include #include +#include #define SD_VERSION_SD 0x20000 #define SD_VERSION_3 (SD_VERSION_SD | 0x300)