diff options
author | David Brownell | 2009-04-12 15:38:06 -0700 |
---|---|---|
committer | Wolfgang Denk | 2009-04-16 23:04:28 +0200 |
commit | 7ee38c044ca5041d3378d6507580ea4ec344af96 (patch) | |
tree | 5b95248c8ad414b29c930a56fe5a073282835b22 /include/configs/davinci_sffsdr.h | |
parent | dfc99e143fca44a492918ac6cf3f76ee9c2473a9 (diff) |
fix DaVinci NS16550_REG_SIZE regression
Update the DaVinci DM6446 boards to use the new convention
for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed
from the original 4 bytes, but these chips are little-endian.
(Resolves a regression added recently by the include/ns16550.h
patch to "Unify structure declaration for registers". The code
previously worked just fine because the registers were accessed
as host-endian words, not as bytes.)
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'include/configs/davinci_sffsdr.h')
-rw-r--r-- | include/configs/davinci_sffsdr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/davinci_sffsdr.h b/include/configs/davinci_sffsdr.h index 9354c2ffb0d..73a59db8713 100644 --- a/include/configs/davinci_sffsdr.h +++ b/include/configs/davinci_sffsdr.h @@ -54,7 +54,7 @@ /* Serial Driver info */ #define CONFIG_SYS_NS16550 #define CONFIG_SYS_NS16550_SERIAL -#define CONFIG_SYS_NS16550_REG_SIZE 4 /* NS16550 register size */ +#define CONFIG_SYS_NS16550_REG_SIZE -4 /* NS16550 register size, byteorder */ #define CONFIG_SYS_NS16550_COM1 0x01c20000 /* Base address of UART0 */ #define CONFIG_SYS_NS16550_CLK 27000000 /* Input clock to NS16550 */ #define CONFIG_CONS_INDEX 1 /* use UART0 for console */ |