Add function which allow to remove USB gadget.
This functions also remove gadget from internal
library structures what means that after this
operation all pointers to removed gadget are invalid.

Signed-off-by: Krzysztof Opasiak <k.opas...@samsung.com>
---
 include/usbg/usbg.h |   10 ++++++++++
 src/usbg.c          |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/include/usbg/usbg.h b/include/usbg/usbg.h
index f65d443..d0abd80 100644
--- a/include/usbg/usbg.h
+++ b/include/usbg/usbg.h
@@ -298,6 +298,16 @@ extern int usbg_remove_config(usbg_config *c, int 
recursive);
 extern int usbg_remove_function(usbg_function *f, int recursive);
 
 /**
+ * @brief Remove existing USB gadget
+ * @details This function frees also the memory allocated for gadget
+ * @param g Gadget to be removed
+ * @param recursive If different than 0 all configs, functions
+ * and strings will be also removed before removing gadget
+ * @return 0 on success, usbg_error if error occurred
+ */
+extern int usbg_remove_gadget(usbg_gadget *g, int recursive);
+
+/**
  * @brief Remove configuration strings for given language
  * @param c Pointer to configuration
  * @param lang Language of strings which should be deleted
diff --git a/src/usbg.c b/src/usbg.c
index 1ea05d1..8f613a4 100644
--- a/src/usbg.c
+++ b/src/usbg.c
@@ -1113,6 +1113,53 @@ int usbg_remove_function(usbg_function *f, int recursive)
        return ret;
 }
 
+int usbg_remove_gadget(usbg_gadget *g, int recursive)
+{
+       int ret = USBG_ERROR_INVALID_PARAM;
+       usbg_state *s;
+       if (!g)
+               return ret;
+
+       s = g->parent;
+
+       if (recursive) {
+               /* Recursive flag was given
+                * so remove all configs and functions
+                * using recursive flags */
+               usbg_config *c;
+               usbg_function *f;
+               char spath[USBG_MAX_PATH_LENGTH];
+
+               while (!TAILQ_EMPTY(&g->configs)) {
+                       c = TAILQ_FIRST(&g->configs);
+                       ret = usbg_remove_config(c, 1);
+                       if (ret != USBG_SUCCESS)
+                               return ret;
+               }
+
+               while (!TAILQ_EMPTY(&g->functions)) {
+                       f = TAILQ_FIRST(&g->functions);
+                       ret = usbg_remove_function(f, 1);
+                       if (ret != USBG_SUCCESS)
+                               return ret;
+               }
+
+               sprintf(spath, "%s/%s/%s", g->path, g->name, STRINGS_DIR);
+
+               ret = usbg_remove_all_dirs(spath);
+               if (ret != USBG_SUCCESS)
+                       return ret;
+       }
+
+       ret = usbg_remove_dir(g->path, g->name);
+       if (ret == USBG_SUCCESS) {
+               TAILQ_REMOVE(&(s->gadgets), g, gnode);
+               usbg_free_gadget(g);
+       }
+
+       return ret;
+}
+
 int usbg_remove_config_strs(usbg_config *c, int lang)
 {
        int ret = USBG_SUCCESS;
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to