From 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=ADcolas=20Carneiro=20Lebedenco?= Date: Thu, 4 Sep 2008 15:35:46 -0300 Subject: Fix dev_print when called from usb_stor_info (usb storage command) Fix output of the usb storage command. It was printing "Device 0: not available" because IF_TYPE_USB was not included into the switch statement. Signed-off-by: Nicolas Lebedenco --- disk/part.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'disk') diff --git a/disk/part.c b/disk/part.c index 5c4bf6b614..877e9886af 100644 --- a/disk/part.c +++ b/disk/part.c @@ -124,6 +124,12 @@ void dev_print (block_dev_desc_t *dev_desc) dev_desc->revision, dev_desc->product); break; + case IF_TYPE_USB: + printf ("Vendor: %s Rev: %s Prod: %s\n", + dev_desc->vendor, + dev_desc->revision, + dev_desc->product); + break; case IF_TYPE_UNKNOWN: default: puts ("not available\n"); -- cgit v1.2.1