usb: gadget: properly release f_multi_opts
The usbgadget commands uses statically allocated f_multi_opts and passes
this to usb_multi_register(). These f_multi_opts are of course no
longer valid when we leave the usbgadget command. Luckily we do not use
the data after we left the usbgadget command, so this never has been a
problem. However, f_multi_opts has some allocated members which we can
not free anymore on gadget unregistration because we no longer have the
pointer to them.

Fix this by adding a release function to struct f_multi_opts. This way
we can allocate all memory dynamically and properly free it when not
used anymore.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
1 parent 25fd64e commit 2b9bcff79a02f770fa730e2689ba35cc03c0da7d
@Sascha Hauer Sascha Hauer authored on 20 Jan 2017
Showing 3 changed files
View
commands/usbgadget.c
View
drivers/usb/gadget/multi.c
View
include/usb/gadget-multi.h