Implementation made use of types defined in common.h, even though it wasn't #included. It worked in circumstances when .c files included every needed header (all).
Signed-off-by: Mateusz Zalega <[email protected]> Cc: Tom Rini <[email protected]> Cc: Minkyu Kang <[email protected]> --- Changes since v1: - none --- include/part.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/part.h b/include/part.h index 4beb6db..53532dc 100644 --- a/include/part.h +++ b/include/part.h @@ -8,6 +8,7 @@ #define _PART_H #include <ide.h> +#include <common.h> typedef struct block_dev_desc { int if_type; /* type of the interface */ -- 1.9.0 _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

