Files
kernel-tenderloin-3.0/drivers
Benoit Goby 94df1bdfdc usb: gadget: composite: Add usb_remove_config
This allows composite drivers to dynamically change their configuration.
For example, a driver might remove a configuration and register a new
one with a different set of functions.
User should prevent the host from enumerating the device while changing
the configuration:

	usb_gadget_disconnect(cdev->gadget);
	usb_remove_config(cdev, old_config);
	usb_add_config(cdev, new_config, new_conf_bind);
	usb_gadget_connect(cdev->gadget);

Change-Id: Icbfb4ce41685fde9bf63d5d58fca1ad242aa69f9
Signed-off-by: Benoit Goby <benoit@android.com>
2011-06-17 16:02:36 -07:00
..
2011-06-14 09:09:54 -07:00
2011-05-26 17:12:32 -07:00
2011-06-11 15:06:48 -07:00
2011-06-06 14:14:56 +02:00
2011-05-30 11:14:15 +09:30
2011-06-14 09:08:45 -07:00