The soc/tegra/fuse.h header makes use of kernel-specific types (u32, u8) and therefore it needs a linux/types.h include.
Cc: Thierry Reding <[email protected]> Cc: Stephen Warren <[email protected]> Cc: Alexandre Courbot <[email protected]> Signed-off-by: Ezequiel Garcia <[email protected]> --- include/soc/tegra/fuse.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/soc/tegra/fuse.h b/include/soc/tegra/fuse.h index b5f7b5f..8459008 100644 --- a/include/soc/tegra/fuse.h +++ b/include/soc/tegra/fuse.h @@ -28,6 +28,8 @@ #ifndef __ASSEMBLY__ +#include <linux/types.h> + u32 tegra_read_chipid(void); u8 tegra_get_chip_id(void); -- 2.3.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

