diff options
author | Tom Rini <trini@konsulko.com> | 2025-07-16 08:41:40 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-07-16 10:56:28 -0600 |
commit | a76a8437926c287c6ebefeaf6a1bb7f8bf088761 (patch) | |
tree | 84c45b931b27bce263db3dd721add114049e1810 /common/avb_verify.c | |
parent | bcc7bc69b92ab728790aea0d08b2ae5e22d3b09d (diff) | |
parent | 89911825a2d3bbd1bc5d41b977aa24fb5b10f49d (diff) |
Merge tag 'u-boot-dfu-20250716' of https://source.denx.de/u-boot/custodians/u-boot-dfu
u-boot-dfu-20250716
Android:
- Fix printing lbaint_t format in AVB and android_ab messages
DFU:
- Fix dfu_config_interfaces() for single interface DFU syntax
Diffstat (limited to 'common/avb_verify.c')
-rw-r--r-- | common/avb_verify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/avb_verify.c b/common/avb_verify.c index cff9117d92f..29a3272579c 100644 --- a/common/avb_verify.c +++ b/common/avb_verify.c @@ -320,7 +320,7 @@ static unsigned long mmc_read_and_flush(struct mmc_part *part, } if ((start + sectors) > (part->info.start + part->info.size)) { sectors = part->info.start + part->info.size - start; - printf("%s: read sector aligned to partition bounds (%ld)\n", + printf("%s: read sector aligned to partition bounds (" LBAF ")\n", __func__, sectors); } @@ -363,7 +363,7 @@ static unsigned long mmc_write(struct mmc_part *part, lbaint_t start, } if ((start + sectors) > (part->info.start + part->info.size)) { sectors = part->info.start + part->info.size - start; - printf("%s: sector aligned to partition bounds (%ld)\n", + printf("%s: sector aligned to partition bounds (" LBAF ")\n", __func__, sectors); } if (unaligned) { |