diff options
author | Mateusz Zalega <m.zalega@samsung.com> | 2014-04-28 21:13:22 +0200 |
---|---|---|
committer | Lukasz Majewski <l.majewski@samsung.com> | 2014-05-05 08:00:28 +0200 |
commit | 6b423b752b24bf69962821754314418621fc71cc (patch) | |
tree | c0cd8c7689248d352a946f55a2266f8995106b36 | |
parent | 07a2d42cd4964168b98c895dd2bb9c0c8275992d (diff) | |
download | u-boot-imx-6b423b752b24bf69962821754314418621fc71cc.zip u-boot-imx-6b423b752b24bf69962821754314418621fc71cc.tar.gz u-boot-imx-6b423b752b24bf69962821754314418621fc71cc.tar.bz2 |
part: header fix
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 <m.zalega@samsung.com>
Cc: Tom Rini <trini@ti.com>
Cc: Minkyu Kang <mk7.kang@samsung.com>
-rw-r--r-- | include/part.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 */ |