From 9e6ddf343d61a6b2bb2a6dea8e4a34137a2978f9 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 27 Sep 2017 09:55:46 +0200 Subject: usbgadget: only set to peripheral mode when error checking is done Only begin to modify the hardware when the obious errors have been checked. Signed-off-by: Sascha Hauer --- drivers/usb/gadget/autostart.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/gadget/autostart.c b/drivers/usb/gadget/autostart.c index a27be899c3..2ca979057e 100644 --- a/drivers/usb/gadget/autostart.c +++ b/drivers/usb/gadget/autostart.c @@ -39,8 +39,6 @@ static int usbgadget_autostart(void) if (!autostart) return 0; - setenv("otg.mode", "peripheral"); - opts = xzalloc(sizeof(*opts)); opts->release = usb_multi_opts_release; @@ -60,6 +58,8 @@ static int usbgadget_autostart(void) return 0; } + setenv("otg.mode", "peripheral"); + ret = usb_multi_register(opts); if (ret) usb_multi_opts_release(opts); -- cgit v1.2.3