aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Hitz <christian.hitz@aizo.com>2011-10-24 08:57:32 +0200
committerNicolas Ferre <nicolas.ferre@atmel.com>2011-11-28 12:10:34 +0100
commita5f70b6717a229ad10aa79382a29a8ee6f1976c3 (patch)
treebd5f4d210f4fcb03b32c29a2ae96486a7d92668e
parentLinux 3.2-rc3 (diff)
downloadlinux-dev-a5f70b6717a229ad10aa79382a29a8ee6f1976c3.tar.xz
linux-dev-a5f70b6717a229ad10aa79382a29a8ee6f1976c3.zip
ARM: at91: fix NAND bus width decoding from system_rev
Make it is safe to assign the return value of this function to u8/u16 variables. Signed-off-by: Christian Hitz <christian.hitz@aizo.com> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
-rw-r--r--arch/arm/mach-at91/include/mach/system_rev.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-at91/include/mach/system_rev.h b/arch/arm/mach-at91/include/mach/system_rev.h
index 8f4866045b41..ec164a4124c9 100644
--- a/arch/arm/mach-at91/include/mach/system_rev.h
+++ b/arch/arm/mach-at91/include/mach/system_rev.h
@@ -19,7 +19,7 @@
#define BOARD_HAVE_NAND_16BIT (1 << 31)
static inline int board_have_nand_16bit(void)
{
- return system_rev & BOARD_HAVE_NAND_16BIT;
+ return (system_rev & BOARD_HAVE_NAND_16BIT) ? 1 : 0;
}
#endif /* __ARCH_SYSTEM_REV_H__ */