mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-21 04:14:34 +00:00
efi_loader: correctly render UsbClass DP nodes as text
Correct the text representation of UsbClass device path nodes. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
d0384d5160
commit
d41f99e179
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ static char *dp_msging(char *s, struct efi_device_path *dp)
|
|||
struct efi_device_path_usb_class *ucdp =
|
||||
(struct efi_device_path_usb_class *)dp;
|
||||
|
||||
s += sprintf(s, "USBClass(%x,%x,%x,%x,%x)",
|
||||
s += sprintf(s, "UsbClass(0x%x,0x%x,0x%x,0x%x,0x%x)",
|
||||
ucdp->vendor_id, ucdp->product_id,
|
||||
ucdp->device_class, ucdp->device_subclass,
|
||||
ucdp->device_protocol);
|
||||
|
|
Loading…
Add table
Reference in a new issue