From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mateusz Zalega Date: Tue, 04 Feb 2014 18:02:34 +0100 Subject: [U-Boot] [PATCH v2 02/12] part: header fix In-Reply-To: <1391533364-17663-1-git-send-email-m.zalega@samsung.com> References: <1389277919-15279-1-git-send-email-m.zalega@samsung.com> <1391533364-17663-1-git-send-email-m.zalega@samsung.com> Message-ID: <1391533364-17663-3-git-send-email-m.zalega@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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). Change-Id: Iafdd4f1997767e9eb84d583fd32c79c8c4d43afd Signed-off-by: Mateusz Zalega Cc: Minkyu Kang Cc: Tom Rini --- 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 +#include typedef struct block_dev_desc { int if_type; /* type of the interface */ -- 1.8.2.1