aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/gadget/composite.c
diff options
context:
space:
mode:
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>2012-12-23 15:10:05 -0500
committerFelipe Balbi <balbi@ti.com>2013-01-21 13:52:42 -0500
commitb473577854fea63055ff9ab84f0f52a3e8aed15e (patch)
treea3ba2d88a72fa7719fac1afc7a13ce886084af3a /drivers/usb/gadget/composite.c
parent3249ca22c088c286d6227d8fae9c85a43a8ce9f6 (diff)
usb: gadget: composite: add usb_remove_function()
This will be used to remove a single function from a given config. Right now "ignore" that an error at ->bind() time and cleanup later during composite_unbind() / remove_config(). Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/composite.c')
-rw-r--r--drivers/usb/gadget/composite.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/usb/gadget/composite.c b/drivers/usb/gadget/composite.c
index 4aa0e4652228..366facccf4f6 100644
--- a/drivers/usb/gadget/composite.c
+++ b/drivers/usb/gadget/composite.c
@@ -215,6 +215,18 @@ done:
215} 215}
216EXPORT_SYMBOL_GPL(usb_add_function); 216EXPORT_SYMBOL_GPL(usb_add_function);
217 217
218void usb_remove_function(struct usb_configuration *c, struct usb_function *f)
219{
220 if (f->disable)
221 f->disable(f);
222
223 bitmap_zero(f->endpoints, 32);
224 list_del(&f->list);
225 if (f->unbind)
226 f->unbind(c, f);
227}
228EXPORT_SYMBOL_GPL(usb_remove_function);
229
218/** 230/**
219 * usb_function_deactivate - prevent function and gadget enumeration 231 * usb_function_deactivate - prevent function and gadget enumeration
220 * @function: the function that isn't yet ready to respond 232 * @function: the function that isn't yet ready to respond