bootstd: Fix incorrect struct name in bootmeth_setup_iter_order()
authorSam Protsenko <semen.protsenko@linaro.org>
Sun, 12 Jan 2025 03:42:13 +0000 (21:42 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 20 Jun 2025 14:01:09 +0000 (08:01 -0600)
commit8c61fc082e9ae045534dc2f18ed50493adf35e6d
tree2e318f0fe1346bfe68d8df43baa5640bf1e345bb
parent8da358c0a15a4f538d561602f600b2695fedeb56
bootstd: Fix incorrect struct name in bootmeth_setup_iter_order()

There is no such thing as struct bootmeth, it's probably a typo. This
issue doesn't affect the execution as it's a pointer, and pointer sizes
are the same for all data types. But it can be confusing, so make it
struct udevice, as it should be.

Fixes: a950d31abe98 ("bootstd: Add the bootmeth uclass and helpers")
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
boot/bootmeth-uclass.c