bootstd: Rename bootdev checkers

These functions return 0 if the check passes, so the names are somewhat
confusing. Rename them.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2023-01-17 10:47:54 -07:00
committed by Tom Rini
parent 2b3ebf2013
commit 865328c314
8 changed files with 15 additions and 15 deletions

View File

@@ -27,7 +27,7 @@ static int eth_get_bootflow(struct udevice *dev, struct bootflow_iter *iter,
int ret;
/* Must be an Ethernet device */
ret = bootflow_iter_uses_network(iter);
ret = bootflow_iter_check_net(iter);
if (ret)
return log_msg_ret("net", ret);