aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLei Wen2010-09-13 09:07:28 -0500
committerWolfgang Denk2010-09-18 16:47:28 -0500
commit8f3b96427aa573d5b300788e6ff5e989cff1e351 (patch)
tree3ea588c4b53e9b748aa91814b3b4110dd4b48446 /disk/part.c
parentd2bf29e3994688ce730c8ab82bbafe6e39c229c1 (diff)
downloadu-boot-8f3b96427aa573d5b300788e6ff5e989cff1e351.tar.gz
u-boot-8f3b96427aa573d5b300788e6ff5e989cff1e351.tar.xz
u-boot-8f3b96427aa573d5b300788e6ff5e989cff1e351.zip
mmc: print out partition table
Signed-off-by: Lei Wen <leiwen@marvell.com>
Diffstat (limited to 'disk/part.c')
-rw-r--r--disk/part.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/disk/part.c b/disk/part.c
index 3ba88c7e81..1806fe6e18 100644
--- a/disk/part.c
+++ b/disk/part.c
@@ -364,6 +364,9 @@ static void print_part_header (const char *type, block_dev_desc_t * dev_desc)
364 case IF_TYPE_DOC: 364 case IF_TYPE_DOC:
365 puts ("DOC"); 365 puts ("DOC");
366 break; 366 break;
367 case IF_TYPE_MMC:
368 puts ("MMC");
369 break;
367 default: 370 default:
368 puts ("UNKNOWN"); 371 puts ("UNKNOWN");
369 break; 372 break;