diff options
author | Felipe Balbi <balbi@ti.com> | 2013-01-24 17:41:00 +0200 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-03-18 11:16:55 +0200 |
commit | 7bce401cc6db5508ef2517e45bd8caf7ce0a15ee (patch) | |
tree | 1372eb8462d2f1c69258bed063ee69ab87706a02 /include/linux/usb | |
parent | dc9e2873b740331b186b8f315fd18bbc97108d2e (diff) | |
download | talos-op-linux-7bce401cc6db5508ef2517e45bd8caf7ce0a15ee.tar.gz talos-op-linux-7bce401cc6db5508ef2517e45bd8caf7ce0a15ee.zip |
usb: gadget: drop now unnecessary flag
We don't need the ->register_my_device flag
anymore because all UDC drivers have been
properly converted.
Let's remove every history of it.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'include/linux/usb')
-rw-r--r-- | include/linux/usb/gadget.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/usb/gadget.h b/include/linux/usb/gadget.h index fcd9ef8d3f70..2e297e80d59a 100644 --- a/include/linux/usb/gadget.h +++ b/include/linux/usb/gadget.h @@ -494,9 +494,6 @@ struct usb_gadget_ops { * only supports HNP on a different root port. * @b_hnp_enable: OTG device feature flag, indicating that the A-Host * enabled HNP support. - * @register_my_device: Flag telling udc-core that UDC driver didn't - * register the gadget device to the driver model. Temporary until - * all UDC drivers are fixed up properly. * @name: Identifies the controller hardware type. Used in diagnostics * and sometimes configuration. * @dev: Driver model state for this abstract device. @@ -534,7 +531,6 @@ struct usb_gadget { unsigned b_hnp_enable:1; unsigned a_hnp_support:1; unsigned a_alt_hnp_support:1; - unsigned register_my_device:1; const char *name; struct device dev; unsigned out_epnum; |