]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
fwu: rename fwu_get_verified_mdata to fwu_get_mdata
authorJassi Brar <jaswinder.singh@linaro.org>
Mon, 6 Mar 2023 23:18:48 +0000 (17:18 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 9 Jun 2023 17:52:40 +0000 (13:52 -0400)
fwu_get_mdata() sounds more appropriate than fwu_get_verified_mdata()

Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Tested-by: Sughosh Ganu <sughosh.ganu@linaro.org>
cmd/fwu_mdata.c
include/fwu.h
lib/fwu_updates/fwu.c

index 9b70340368a617225acd8f0dc86cfaad972dfac5..5ecda455df6e1b3f852850d5ce4a36b85f810e26 100644 (file)
@@ -46,7 +46,7 @@ int do_fwu_mdata_read(struct cmd_tbl *cmdtp, int flag,
        int ret = CMD_RET_SUCCESS, res;
        struct fwu_mdata mdata;
 
-       res = fwu_get_verified_mdata(&mdata);
+       res = fwu_get_mdata(&mdata);
        if (res < 0) {
                log_err("Unable to get valid FWU metadata\n");
                ret = CMD_RET_FAILURE;
index 7b600ce0d7eccb0fa049d722486f2978d787bbee..6affb73c4fb910dda84fdc0e505b3e738615e4ba 100644 (file)
@@ -80,7 +80,7 @@ int fwu_read_mdata(struct udevice *dev, struct fwu_mdata *mdata, bool primary);
 int fwu_write_mdata(struct udevice *dev, struct fwu_mdata *mdata, bool primary);
 
 /**
- * fwu_get_verified_mdata() - Read, verify and return the FWU metadata
+ * fwu_get_mdata() - Read, verify and return the FWU metadata
  *
  * Read both the metadata copies from the storage media, verify their checksum,
  * and ascertain that both copies match. If one of the copies has gone bad,
@@ -88,7 +88,7 @@ int fwu_write_mdata(struct udevice *dev, struct fwu_mdata *mdata, bool primary);
  *
  * Return: 0 if OK, -ve on error
  */
-int fwu_get_verified_mdata(struct fwu_mdata *mdata);
+int fwu_get_mdata(struct fwu_mdata *mdata);
 
 /**
  * fwu_get_active_index() - Get active_index from the FWU metadata
index c34838435e6b48f26e295cc317d3af07f225d538..525ac49af378fc868e64a8bfbdb6796a746c440e 100644 (file)
@@ -189,7 +189,7 @@ static inline int mdata_crc_check(struct fwu_mdata *mdata)
 }
 
 /**
- * fwu_get_verified_mdata() - Read, verify and return the FWU metadata
+ * fwu_get_mdata() - Read, verify and return the FWU metadata
  * @mdata: Output FWU metadata read or NULL
  *
  * Read both the metadata copies from the storage media, verify their checksum,
@@ -198,7 +198,7 @@ static inline int mdata_crc_check(struct fwu_mdata *mdata)
  *
  * Return: 0 if OK, -ve on error
  */
-int fwu_get_verified_mdata(struct fwu_mdata *mdata)
+int fwu_get_mdata(struct fwu_mdata *mdata)
 {
        int err;
        bool parts_ok[2] = { false };
@@ -615,7 +615,7 @@ static int fwu_boottime_checks(void *ctx, struct event *event)
                return ret;
        }
 
-       ret = fwu_get_verified_mdata(NULL);
+       ret = fwu_get_mdata(NULL);
        if (ret) {
                log_debug("Unable to read meta-data\n");
                return ret;