diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-03-27 23:15:10 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-03-27 23:15:10 +0000 |
commit | dacca0e277da8e189dfbfcc6ab2b5d7d4a32ea07 (patch) | |
tree | a2d555321c9b0c0a1685de1efcacb4f809739984 /target | |
parent | fe3407131452ac8812379e768d199349f8553258 (diff) | |
download | upstream-dacca0e277da8e189dfbfcc6ab2b5d7d4a32ea07.tar.gz upstream-dacca0e277da8e189dfbfcc6ab2b5d7d4a32ea07.tar.bz2 upstream-dacca0e277da8e189dfbfcc6ab2b5d7d4a32ea07.zip |
fix flash buswidth detection
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6727 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/atheros-2.6/files/arch/mips/atheros/ar5312.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/atheros-2.6/files/arch/mips/atheros/ar5312.c b/target/linux/atheros-2.6/files/arch/mips/atheros/ar5312.c index 384020b27e..57d56eb0e5 100644 --- a/target/linux/atheros-2.6/files/arch/mips/atheros/ar5312.c +++ b/target/linux/atheros-2.6/files/arch/mips/atheros/ar5312.c @@ -255,13 +255,13 @@ int __init ar5312_init_devices(void) ar5312_eth0_data.board_config = board_config; ar5312_eth1_data.board_config = board_config; - /* fixup flash width; TODO: constants -> defines */ - fctl = sysRegRead(AR531X_FLASHCTL) & 0x30000000; + /* fixup flash width */ + fctl = sysRegRead(AR531X_FLASHCTL) & FLASHCTL_MW; switch (fctl) { - case 0x20000000: + case FLASHCTL_MWx16: ar5312_flash_data.width = 2; break; - case 0x00000000: + case FLASHCTL_MWx8: default: ar5312_flash_data.width = 1; break; |