mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
Fix incorrect switch for IF_TYPE in part.c
Use correct field in block_dev_desc_t when writing interface type in
dev_print. Error introduced in 574b3195
.
Also added fix from Martin Krause
Signed-off-by: Tor Krill <tor@excito.com>
This commit is contained in:
parent
b64b8a0bd3
commit
8ec6e332ea
1 changed files with 2 additions and 2 deletions
|
@ -109,7 +109,7 @@ void dev_print (block_dev_desc_t *dev_desc)
|
||||||
lbaint_t lba512;
|
lbaint_t lba512;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
switch (dev_desc->type) {
|
switch (dev_desc->if_type) {
|
||||||
case IF_TYPE_SCSI:
|
case IF_TYPE_SCSI:
|
||||||
printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
|
printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
|
||||||
dev_desc->target,dev_desc->lun,
|
dev_desc->target,dev_desc->lun,
|
||||||
|
@ -124,7 +124,7 @@ void dev_print (block_dev_desc_t *dev_desc)
|
||||||
dev_desc->revision,
|
dev_desc->revision,
|
||||||
dev_desc->product);
|
dev_desc->product);
|
||||||
break;
|
break;
|
||||||
case DEV_TYPE_UNKNOWN:
|
case IF_TYPE_UNKNOWN:
|
||||||
default:
|
default:
|
||||||
puts ("not available\n");
|
puts ("not available\n");
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue