diff options
author | Lei Wen <leiwen@marvell.com> | 2010-09-13 22:07:28 +0800 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-09-18 23:47:28 +0200 |
commit | 8f3b96427aa573d5b300788e6ff5e989cff1e351 (patch) | |
tree | 3ea588c4b53e9b748aa91814b3b4110dd4b48446 /disk | |
parent | d2bf29e3994688ce730c8ab82bbafe6e39c229c1 (diff) |
mmc: print out partition table
Signed-off-by: Lei Wen <leiwen@marvell.com>
Diffstat (limited to 'disk')
-rw-r--r-- | disk/part.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/disk/part.c b/disk/part.c index 3ba88c7e817..1806fe6e18f 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) case IF_TYPE_DOC: puts ("DOC"); break; + case IF_TYPE_MMC: + puts ("MMC"); + break; default: puts ("UNKNOWN"); break; |