diff options
author | Huang Shijie <b32955@freescale.com> | 2013-08-20 13:58:34 +0800 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2013-10-22 16:17:52 -0700 |
commit | 2e4fe96b2bc5ad33793d0d5cbeb23c9f76155211 (patch) | |
tree | 1be06adf1edcb05e6bb49801a15fd1a42e8bb8fd /mtd_debug.c | |
parent | ab8c6fb93ce9db0f09401c4b819b0b277dc00340 (diff) |
add the MTD_MLCNANDFLASH case
The MTD_MLCNANDFLASH case is missed in the current code.
This patch adds it.
Signed-off-by: Huang Shijie <b32955@freescale.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'mtd_debug.c')
-rw-r--r-- | mtd_debug.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mtd_debug.c b/mtd_debug.c index 9110e9b..d6993ce 100644 --- a/mtd_debug.c +++ b/mtd_debug.c @@ -260,6 +260,9 @@ int showinfo(int fd) case MTD_NANDFLASH: printf("MTD_NANDFLASH"); break; + case MTD_MLCNANDFLASH: + printf("MTD_MLCNANDFLASH"); + break; case MTD_DATAFLASH: printf("MTD_DATAFLASH"); break; |