]> git.baikalelectronics.ru Git - uboot.git/commitdiff
bootstd: Rename bootdev checkers
authorSimon Glass <sjg@chromium.org>
Tue, 17 Jan 2023 17:47:54 +0000 (10:47 -0700)
committerTom Rini <trini@konsulko.com>
Mon, 23 Jan 2023 23:11:40 +0000 (18:11 -0500)
These functions return 0 if the check passes, so the names are somewhat
confusing. Rename them.

Signed-off-by: Simon Glass <sjg@chromium.org>
boot/bootflow.c
boot/bootmeth_distro.c
boot/bootmeth_efi.c
boot/bootmeth_efi_mgr.c
boot/bootmeth_pxe.c
boot/bootmeth_script.c
include/bootflow.h
net/eth_bootdev.c

index 163cd4953ddb5b4211dd2c29febbf6a7a5156600..0345755f58fccb41340375c2c1eb415919014f50 100644 (file)
@@ -427,7 +427,7 @@ int bootflow_run_boot(struct bootflow_iter *iter, struct bootflow *bflow)
        return ret;
 }
 
-int bootflow_iter_uses_blk_dev(const struct bootflow_iter *iter)
+int bootflow_iter_check_blk(const struct bootflow_iter *iter)
 {
        const struct udevice *media = dev_get_parent(iter->dev);
        enum uclass_id id = device_get_uclass_id(media);
@@ -439,7 +439,7 @@ int bootflow_iter_uses_blk_dev(const struct bootflow_iter *iter)
        return -ENOTSUPP;
 }
 
-int bootflow_iter_uses_network(const struct bootflow_iter *iter)
+int bootflow_iter_check_net(const struct bootflow_iter *iter)
 {
        const struct udevice *media = dev_get_parent(iter->dev);
        enum uclass_id id = device_get_uclass_id(media);
@@ -451,7 +451,7 @@ int bootflow_iter_uses_network(const struct bootflow_iter *iter)
        return -ENOTSUPP;
 }
 
-int bootflow_iter_uses_system(const struct bootflow_iter *iter)
+int bootflow_iter_check_system(const struct bootflow_iter *iter)
 {
        const struct udevice *media = dev_get_parent(iter->dev);
        enum uclass_id id = device_get_uclass_id(media);
index 6ef0fa1f2c906da6bb2be2bec83caaa6a37404c1..356929828b9938845ab0e69c40c2b29803363db9 100644 (file)
@@ -59,7 +59,7 @@ static int distro_check(struct udevice *dev, struct bootflow_iter *iter)
        int ret;
 
        /* This only works on block devices */
-       ret = bootflow_iter_uses_blk_dev(iter);
+       ret = bootflow_iter_check_blk(iter);
        if (ret)
                return log_msg_ret("blk", ret);
 
index d5438eb67b9e7fc5495e75fcd8017b768ba48ab4..f7bb153d9de93d1eec4741597ccd611bf9351d9e 100644 (file)
@@ -104,7 +104,7 @@ static int distro_efi_check(struct udevice *dev, struct bootflow_iter *iter)
        int ret;
 
        /* This only works on block devices */
-       ret = bootflow_iter_uses_blk_dev(iter);
+       ret = bootflow_iter_check_blk(iter);
        if (ret)
                return log_msg_ret("blk", ret);
 
index 2f327c1f8ce29df00ddafcf577ecb895d3738a54..e9d973429f75ebd7d8a6d8362b2c712cce85a005 100644 (file)
@@ -36,7 +36,7 @@ static int efi_mgr_check(struct udevice *dev, struct bootflow_iter *iter)
        int ret;
 
        /* Must be an bootstd device */
-       ret = bootflow_iter_uses_system(iter);
+       ret = bootflow_iter_check_system(iter);
        if (ret)
                return log_msg_ret("net", ret);
 
index e6992168c067aa73c83598bc4e865e500a5ec13d..13e2ff486dcb10f922bd95af43ab2bad1bfed16c 100644 (file)
@@ -44,7 +44,7 @@ static int distro_pxe_check(struct udevice *dev, struct bootflow_iter *iter)
        int ret;
 
        /* This only works on network devices */
-       ret = bootflow_iter_uses_network(iter);
+       ret = bootflow_iter_check_net(iter);
        if (ret)
                return log_msg_ret("net", ret);
 
index c7061eb998f47bdf4f140e01b7dce4d528169a85..3a3907d75b74be7e734be7cb1ecbd0f4a3ae8649 100644 (file)
@@ -28,7 +28,7 @@ static int script_check(struct udevice *dev, struct bootflow_iter *iter)
        int ret;
 
        /* This only works on block devices */
-       ret = bootflow_iter_uses_blk_dev(iter);
+       ret = bootflow_iter_check_blk(iter);
        if (ret)
                return log_msg_ret("blk", ret);
 
index 3a93e4b5cab048b7198df23c29b7023cf4d452de..8ff9e332b1f24a2c0283ad00473403d2e5e17ede 100644 (file)
@@ -314,33 +314,33 @@ const char *bootflow_state_get_name(enum bootflow_state_t state);
 void bootflow_remove(struct bootflow *bflow);
 
 /**
- * bootflow_iter_uses_blk_dev() - Check that a bootflow uses a block device
+ * bootflow_iter_check_blk() - Check that a bootflow uses a block device
  *
  * This checks the bootdev in the bootflow to make sure it uses a block device
  *
  * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. ethernet)
  */
-int bootflow_iter_uses_blk_dev(const struct bootflow_iter *iter);
+int bootflow_iter_check_blk(const struct bootflow_iter *iter);
 
 /**
- * bootflow_iter_uses_network() - Check that a bootflow uses a network device
+ * bootflow_iter_check_net() - Check that a bootflow uses a network device
  *
  * This checks the bootdev in the bootflow to make sure it uses a network
  * device
  *
  * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. MMC)
  */
-int bootflow_iter_uses_network(const struct bootflow_iter *iter);
+int bootflow_iter_check_net(const struct bootflow_iter *iter);
 
 /**
- * bootflow_iter_uses_system() - Check that a bootflow uses the bootstd device
+ * bootflow_iter_check_system() - Check that a bootflow uses the bootstd device
  *
  * This checks the bootdev in the bootflow to make sure it uses the bootstd
  * device
  *
  * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. MMC)
  */
-int bootflow_iter_uses_system(const struct bootflow_iter *iter);
+int bootflow_iter_check_system(const struct bootflow_iter *iter);
 
 /**
  * bootflow_menu_new() - Create a new bootflow menu
index fdf48f0013110fdfc4217a61fdcf80103677b61e..bcbb35a74cd6a5a83c25070bf3bf87ddab82fd9c 100644 (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);