]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Fix dev_print when called from usb_stor_info (usb storage command)
authorNĂ­colas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
Thu, 4 Sep 2008 18:35:46 +0000 (15:35 -0300)
committerWolfgang Denk <wd@denx.de>
Tue, 9 Sep 2008 14:04:09 +0000 (16:04 +0200)
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 <nicolas.lebedenco@tasksistemas.com.br>
disk/part.c

index 5c4bf6b6142bb68cc190e1a549d9a054742d7606..877e9886aff4ae5d2c908c948882c6ef696b0513 100644 (file)
@@ -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");