diff options
author | Tom Rini <trini@konsulko.com> | 2023-03-25 09:40:19 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-25 09:40:19 -0400 |
commit | 8be7b4629e87ff8db08dd087c81d58129d029bad (patch) | |
tree | fa7317c65ed1e93b9799cdba31ea1ac42906d073 /include | |
parent | 78f67f11a9920ef988cbff5341616695c3e87ebd (diff) | |
parent | 180b7118bed8433f9cfe4b5ad62c6b0d901924f5 (diff) |
Merge tag 'efi-2023.04-rc5' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2023.04-rc5
UEFI:
* Create unique device paths for USB devices with the same vendor
and product id.
Diffstat (limited to 'include')
-rw-r--r-- | include/efi_api.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index 2d18d25a71..c57868abbd 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -570,6 +570,7 @@ struct efi_mac_addr { #define DEVICE_PATH_TYPE_HARDWARE_DEVICE 0x01 # define DEVICE_PATH_SUB_TYPE_MEMORY 0x03 # define DEVICE_PATH_SUB_TYPE_VENDOR 0x04 +# define DEVICE_PATH_SUB_TYPE_CONTROLLER 0x05 struct efi_device_path_memory { struct efi_device_path dp; @@ -584,6 +585,11 @@ struct efi_device_path_vendor { u8 vendor_data[]; } __packed; +struct efi_device_path_controller { + struct efi_device_path dp; + u32 controller_number; +} __packed; + #define DEVICE_PATH_TYPE_ACPI_DEVICE 0x02 # define DEVICE_PATH_SUB_TYPE_ACPI_DEVICE 0x01 |