diff options
author | Nicolas Ferre <nicolas.ferre@atmel.com> | 2011-07-01 12:25:24 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2011-07-04 23:22:25 +0200 |
commit | 64393b3ae4e3cc86e2d622f682d736ec973364b6 (patch) | |
tree | c00b503c0c33dcfaa4ec2fab73608c3db9053d6c /arch/arm/mach-at91/include | |
parent | c5efefac659870744f6e203e28abd095ac0f590b (diff) | |
download | op-kernel-dev-64393b3ae4e3cc86e2d622f682d736ec973364b6.zip op-kernel-dev-64393b3ae4e3cc86e2d622f682d736ec973364b6.tar.gz |
AT91: Change nand buswidth logic to match hardware default configuration
The recently modified nand buswitth configuration is not aligned with
board reality: the double footprint on boards is always populated with 8bits
buswidth nand flashes.
So we have to consider that without particular configuration the 8bits
buswidth is selected by default.
Moreover, the previous logic was always using !board_have_nand_8bit(), we
change it to a simpler: board_have_nand_16bit().
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Tested-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-at91/include')
-rw-r--r-- | arch/arm/mach-at91/include/mach/system_rev.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/mach-at91/include/mach/system_rev.h b/arch/arm/mach-at91/include/mach/system_rev.h index b855ee7..8f48660 100644 --- a/arch/arm/mach-at91/include/mach/system_rev.h +++ b/arch/arm/mach-at91/include/mach/system_rev.h @@ -13,13 +13,13 @@ * the 16-31 bit are reserved for at91 generic information * * bit 31: - * 0 => nand 16 bit - * 1 => nand 8 bit + * 0 => nand 8 bit + * 1 => nand 16 bit */ -#define BOARD_HAVE_NAND_8BIT (1 << 31) -static int inline board_have_nand_8bit(void) +#define BOARD_HAVE_NAND_16BIT (1 << 31) +static inline int board_have_nand_16bit(void) { - return system_rev & BOARD_HAVE_NAND_8BIT; + return system_rev & BOARD_HAVE_NAND_16BIT; } #endif /* __ARCH_SYSTEM_REV_H__ */ |