bootstd: Add a way to set up a bootflow
authorSimon Glass <sjg@chromium.org>
Fri, 21 Oct 2022 00:22:51 +0000 (18:22 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 31 Oct 2022 15:02:44 +0000 (11:02 -0400)
Add a function to init a bootflow, to reduce code duplication.

Signed-off-by: Simon Glass <sjg@chromium.org>
boot/bootdev-uclass.c
boot/bootflow.c
boot/bootmeth-uclass.c
include/bootflow.h

index 9d98bee..affe0d3 100644 (file)
@@ -440,10 +440,7 @@ int bootdev_get_bootflow(struct udevice *dev, struct bootflow_iter *iter,
 
        if (!ops->get_bootflow)
                return -ENOSYS;
-       memset(bflow, '\0', sizeof(*bflow));
-       bflow->dev = dev;
-       bflow->method = iter->method;
-       bflow->state = BOOTFLOWST_BASE;
+       bootflow_init(bflow, dev, iter->method);
 
        return ops->get_bootflow(dev, iter, bflow);
 }
index 5d94a27..f9ad409 100644 (file)
@@ -339,6 +339,15 @@ int bootflow_scan_next(struct bootflow_iter *iter, struct bootflow *bflow)
        } while (1);
 }
 
+void bootflow_init(struct bootflow *bflow, struct udevice *bootdev,
+                  struct udevice *meth)
+{
+       memset(bflow, '\0', sizeof(*bflow));
+       bflow->dev = bootdev;
+       bflow->method = meth;
+       bflow->state = BOOTFLOWST_BASE;
+}
+
 void bootflow_free(struct bootflow *bflow)
 {
        free(bflow->name);
index 2d7652e..25552dd 100644 (file)
@@ -77,10 +77,7 @@ int bootmeth_get_bootflow(struct udevice *dev, struct bootflow *bflow)
 
        if (!ops->read_bootflow)
                return -ENOSYS;
-       memset(bflow, '\0', sizeof(*bflow));
-       bflow->dev = NULL;
-       bflow->method = dev;
-       bflow->state = BOOTFLOWST_BASE;
+       bootflow_init(bflow, NULL, dev);
 
        return ops->read_bootflow(dev, bflow);
 }
index 6aa3d1f..32dbbbb 100644 (file)
@@ -145,6 +145,18 @@ struct bootflow_iter {
 };
 
 /**
+ * bootflow_init() - Set up a bootflow struct
+ *
+ * The bootflow is zeroed and set to state BOOTFLOWST_BASE
+ *
+ * @bflow: Struct to set up
+ * @bootdev: Bootdev to use
+ * @meth: Bootmeth to use
+ */
+void bootflow_init(struct bootflow *bflow, struct udevice *bootdev,
+                  struct udevice *meth);
+
+/**
  * bootflow_iter_init() - Reset a bootflow iterator
  *
  * This sets everything to the starting point, ready for use.