summaryrefslogtreecommitdiff
path: root/board/pcs440ep/flash.c
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2007-07-11 12:16:04 +0200
committerStefan Roese <sr@denx.de>2007-07-11 12:16:04 +0200
commit53629f439cc9daba166812749d2cf3102aca7aac (patch)
treef82264c99a124f2cbfeca96820290c46c88e0ad9 /board/pcs440ep/flash.c
parent334043f601a90ac53e5ecc846fbb73a1ef38cb1f (diff)
parent4ef218f6fdf8d747f4589da5252b004e7d2c2876 (diff)
downloadu-boot-imx-53629f439cc9daba166812749d2cf3102aca7aac.zip
u-boot-imx-53629f439cc9daba166812749d2cf3102aca7aac.tar.gz
u-boot-imx-53629f439cc9daba166812749d2cf3102aca7aac.tar.bz2
Merge with git://www.denx.de/git/u-boot.git
Diffstat (limited to 'board/pcs440ep/flash.c')
-rw-r--r--board/pcs440ep/flash.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/board/pcs440ep/flash.c b/board/pcs440ep/flash.c
index ece5478..7001440 100644
--- a/board/pcs440ep/flash.c
+++ b/board/pcs440ep/flash.c
@@ -83,6 +83,7 @@ void flash_print_info(flash_info_t *info)
case FLASH_MAN_FUJ: printf ("FUJITSU "); break;
case FLASH_MAN_SST: printf ("SST "); break;
case FLASH_MAN_EXCEL: printf ("Excel Semiconductor "); break;
+ case FLASH_MAN_MX: printf ("MXIC "); break;
default: printf ("Unknown Vendor "); break;
}
@@ -195,6 +196,9 @@ static ulong flash_get_size(vu_long *addr, flash_info_t *info)
case (CFG_FLASH_WORD_SIZE)EXCEL_MANUFACT:
info->flash_id = FLASH_MAN_EXCEL;
break;
+ case (CFG_FLASH_WORD_SIZE)MX_MANUFACT:
+ info->flash_id = FLASH_MAN_MX;
+ break;
default:
info->flash_id = FLASH_UNKNOWN;
info->sector_count = 0;