diff options
author | Kim Phillips | 2010-02-22 19:39:16 -0600 |
---|---|---|
committer | Kim Phillips | 2010-03-02 11:24:35 -0600 |
commit | 4e7e12dfa103cb8ec6dc7547dd1c9976337dc1fd (patch) | |
tree | f0084a069d8e182eae94685fec0b31f74c5cb988 | |
parent | ecd1a09b81f2ed6e6ba7bd1d0bfb0cc3d0ea2ad0 (diff) |
mpc83xx: vme8349: fix incorrect BR0_PRELIM port size comment
commit 98d92d8c9f4021629a45261ad5ec3f3595f3a27a "sbc8349: fix incorrect
comment" missed this one.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
-rw-r--r-- | include/configs/vme8349.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/vme8349.h b/include/configs/vme8349.h index dbc15b297f9..7603300ae18 100644 --- a/include/configs/vme8349.h +++ b/include/configs/vme8349.h @@ -118,7 +118,7 @@ #define CONFIG_SYS_FLASH_BASE 0xffc00000 /* start of FLASH */ #define CONFIG_SYS_FLASH_SIZE 4 /* flash size in MB */ #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE | \ - (2 << BR_PS_SHIFT) | /* 32bit */ \ + (2 << BR_PS_SHIFT) | /* 16bit */ \ BR_V) /* valid */ #define CONFIG_SYS_OR0_PRELIM 0xffc06ff7 /* 4 MB flash size */ @@ -128,7 +128,7 @@ #define CONFIG_SYS_FLASH_BASE 0xf8000000 /* start of FLASH */ #define CONFIG_SYS_FLASH_SIZE 128 /* flash size in MB */ #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE | \ - (2 << BR_PS_SHIFT) | /* 32bit */ \ + (2 << BR_PS_SHIFT) | /* 16bit */ \ BR_V) /* valid */ #define CONFIG_SYS_OR0_PRELIM 0xf8006ff7 /* 128 MB flash size */ |