Change order of gadget creation and attribute writting to fix No such file or directory error while creating new gadget. Signed-off-by: Krzysztof Opasiak <k.opasiak@xxxxxxxxxxx> --- src/gadget.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/gadget.c b/src/gadget.c index 8320f34..aea9b2e 100644 --- a/src/gadget.c +++ b/src/gadget.c @@ -510,15 +510,15 @@ struct gadget *gadget_create_gadget(struct state *s, char *name, g->vendor = vendor; g->product = product; - gadget_write_hex16(s->path, name, "idVendor", vendor); - gadget_write_hex16(s->path, name, "idProduct", product); - ret = mkdir(gpath, S_IRWXU|S_IRWXG|S_IRWXO); if (ret < 0) { ERRORNO("%s\n", gpath); return NULL; } + gadget_write_hex16(s->path, name, "idVendor", vendor); + gadget_write_hex16(s->path, name, "idProduct", product); + /* Insert in string order */ if (TAILQ_EMPTY(&s->gadgets) || (strcmp(name, TAILQ_FIRST(&s->gadgets)->name) < 0)) @@ -642,14 +642,14 @@ struct function *gadget_create_function(struct gadget *g, enum function_type typ sprintf(f->path, "%s/%s/%s", g->path, g->name, "functions"); f->type = type; - gadget_parse_function_attrs(f); - ret = mkdir(fpath, S_IRWXU|S_IRWXG|S_IRWXO); if (ret < 0) { ERRORNO("%s\n", fpath); return NULL; } + gadget_parse_function_attrs(f); + /* Insert in string order */ if (TAILQ_EMPTY(&g->functions) || (strcmp(name, TAILQ_FIRST(&g->functions)->name) < 0)) -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html