diff options
author | Tom Rini <trini@konsulko.com> | 2019-05-19 16:46:24 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-05-19 16:46:24 -0400 |
commit | ab487c8568fe35e97943d121e9b9192884cc0d1d (patch) | |
tree | 2615e6d8b29b7dae50854381509a049e6d2c2ced /lib/efi_loader/efi_device_path_to_text.c | |
parent | e14d9ca4919e5bc987fc628135104f2b2c91af90 (diff) | |
parent | b31ca6bf8484ca10bab4ae544698294a4197bef9 (diff) |
Merge tag 'efi-2019-07-rc3-2' of git://git.denx.de/u-boot-efi
Pull request for UEFI sub-system for v2019.07-rc3 (2)
Minor patches to improve UEFI specification compliance are provided.
To allow running the UEFI self compliance tests an outdated version of
the Unicode collation protocol has been added as a configuration option
(disabled by default).
Diffstat (limited to 'lib/efi_loader/efi_device_path_to_text.c')
-rw-r--r-- | lib/efi_loader/efi_device_path_to_text.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/efi_loader/efi_device_path_to_text.c b/lib/efi_loader/efi_device_path_to_text.c index f3a95790766..96fd08971b7 100644 --- a/lib/efi_loader/efi_device_path_to_text.c +++ b/lib/efi_loader/efi_device_path_to_text.c @@ -79,9 +79,8 @@ static char *dp_acpi(char *s, struct efi_device_path *dp) struct efi_device_path_acpi_path *adp = (struct efi_device_path_acpi_path *)dp; - s += sprintf(s, "Acpi(PNP%04X", EISA_PNP_NUM(adp->hid)); - s += sprintf(s, ",%d", adp->uid); - s += sprintf(s, ")"); + s += sprintf(s, "Acpi(PNP%04X,%d)", EISA_PNP_NUM(adp->hid), + adp->uid); break; } default: |