[PATCH 1/2] file_list: add file_list_parse_null()
Rouven Czerwinski
r.czerwinski at pengutronix.de
Wed Jul 21 01:40:16 PDT 2021
Move the usbgadget parse() function to file_list and rename it to
file_list_parse_null() which will return a NULL pointer instead of an
error. Also adjust the callers in the usbgadget code.
Signed-off-by: Rouven Czerwinski <r.czerwinski at pengutronix.de>
---
common/file-list.c | 16 ++++++++++++++++
common/usbgadget.c | 22 +++-------------------
include/file-list.h | 1 +
3 files changed, 20 insertions(+), 19 deletions(-)
diff --git a/common/file-list.c b/common/file-list.c
index 05f44514fb..407b312833 100644
--- a/common/file-list.c
+++ b/common/file-list.c
@@ -158,6 +158,22 @@ out:
return ERR_PTR(ret);
}
+struct file_list *file_list_parse_null(const char *files)
+{
+ struct file_list *list;
+
+ if (!files)
+ return NULL;
+
+ list = file_list_parse(files);
+ if (IS_ERR(list)) {
+ pr_err("Parsing file list \"%s\" failed: %pe\n", files, list);
+ return NULL;
+ }
+
+ return list;
+}
+
void file_list_free(struct file_list *files)
{
struct file_list_entry *entry, *tmp;
diff --git a/common/usbgadget.c b/common/usbgadget.c
index d4437b5169..2d7323282d 100644
--- a/common/usbgadget.c
+++ b/common/usbgadget.c
@@ -23,26 +23,10 @@ static int autostart;
static int acm;
static char *dfu_function;
-static struct file_list *parse(const char *files)
-{
- struct file_list *list;
-
- if (!files)
- return NULL;
-
- list = file_list_parse(files);
- if (IS_ERR(list)) {
- pr_err("Parsing file list \"%s\" failed: %pe\n", files, list);
- return NULL;
- }
-
- return list;
-}
-
static inline struct file_list *get_dfu_function(void)
{
if (dfu_function && *dfu_function)
- return file_list_parse(dfu_function);
+ return file_list_parse_null(dfu_function);
if (!system_partitions_empty())
return system_partitions_get();
return NULL;
@@ -60,7 +44,7 @@ int usbgadget_register(bool dfu, const char *dfu_opts,
opts->release = usb_multi_opts_release;
if (dfu) {
- opts->dfu_opts.files = parse(dfu_opts);
+ opts->dfu_opts.files = file_list_parse_null(dfu_opts);
if (IS_ENABLED(CONFIG_USB_GADGET_DFU) && file_list_empty(opts->dfu_opts.files)) {
file_list_free(opts->dfu_opts.files);
opts->dfu_opts.files = get_dfu_function();
@@ -68,7 +52,7 @@ int usbgadget_register(bool dfu, const char *dfu_opts,
}
if (fastboot) {
- opts->fastboot_opts.files = parse(fastboot_opts);
+ opts->fastboot_opts.files = file_list_parse_null(fastboot_opts);
if (IS_ENABLED(CONFIG_FASTBOOT_BASE) && file_list_empty(opts->fastboot_opts.files)) {
file_list_free(opts->fastboot_opts.files);
opts->fastboot_opts.files = get_fastboot_partitions();
diff --git a/include/file-list.h b/include/file-list.h
index 7e2a4d9205..5090313739 100644
--- a/include/file-list.h
+++ b/include/file-list.h
@@ -22,6 +22,7 @@ struct file_list {
};
struct file_list *file_list_parse(const char *str);
+struct file_list *file_list_parse_null(const char *str);
char *file_list_to_str(const struct file_list *files);
void file_list_free(struct file_list *);
--
2.32.0
More information about the barebox
mailing list