diff options
| author | Tom Rini <[email protected]> | 2026-03-16 08:22:58 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-03-16 08:22:58 -0600 |
| commit | 071e914b4aa139c9c411efda3fe1ffaebda5c76e (patch) | |
| tree | f65e043c2ea417b4a30ad98b9a3e28061bedbb2e /common | |
| parent | fab3b667b4128fae2d94752bb03088f84dafcf89 (diff) | |
| parent | 4b77b07811c2fb48b4a65ae14c387540ae6b8998 (diff) | |
Merge tag 'u-boot-dfu-20260316' of https://source.denx.de/u-boot/custodians/u-boot-dfu into next
u-boot-dfu-20260316
DFU:
* Make DFU_WRITE_ALT symbol available outside of DFU
* Fix PCI subclass_code warning in spl_dfu
Usb Gadget:
* Mark udc_disconnect() as static
Diffstat (limited to 'common')
| -rw-r--r-- | common/spl/spl_dfu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl_dfu.c b/common/spl/spl_dfu.c index b09f82790c9..7d21bb4d16a 100644 --- a/common/spl/spl_dfu.c +++ b/common/spl/spl_dfu.c @@ -64,7 +64,7 @@ static int dfu_over_pcie(void) hdr.deviceid = CONFIG_SPL_PCI_DFU_DEVICE_ID; hdr.vendorid = CONFIG_SPL_PCI_DFU_VENDOR_ID; hdr.baseclass_code = PCI_BASE_CLASS_MEMORY; - hdr.subclass_code = PCI_CLASS_MEMORY_RAM; + hdr.subclass_code = PCI_CLASS_MEMORY_RAM & 0xff; ret = pci_ep_write_header(dev, fn, &hdr); if (ret) { |
