From: Gabe Black Date: Fri, 12 Oct 2012 14:26:06 +0000 (+0000) Subject: ide: Add printf format string for CONFIG_SYS_64BIT_LBA option X-Git-Tag: v2013.01-rc1~99 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=24a3fdd64d449c1acd4ccc3636f8bf02e903b6f8;p=u-boot ide: Add printf format string for CONFIG_SYS_64BIT_LBA option The size of an LBA type changes depending on this option. We need to use a different printf() string in each case, so create a define for this. Signed-off-by: Gabe Black Signed-off-by: Simon Glass --- diff --git a/include/ide.h b/include/ide.h index 695d08eecc..158e1beaf9 100644 --- a/include/ide.h +++ b/include/ide.h @@ -43,8 +43,10 @@ extern ulong ide_bus_offset[]; #ifdef CONFIG_SYS_64BIT_LBA typedef uint64_t lbaint_t; +#define LBAF "%llx" #else typedef ulong lbaint_t; +#define LBAF "%lx" #endif /*