diff options
author | Tatyana Brokhman <tlinder@codeaurora.org> | 2011-06-28 09:33:50 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-06-28 14:14:37 -0400 |
commit | ea2a1df7b2b1de839a72217d85bfb4b7b049010c (patch) | |
tree | 89c10a2a18bba8a1d448b8b1f1281cf52b2287c6 /include/linux/usb/composite.h | |
parent | 48767a4e8263620c347c3fa17812c943dd0fc2fa (diff) |
usb: gadget: use config_ep_by_speed() instead of ep_choose()
Remove obsolete functions:
1. ep_choose()
2. usb_find_endpoint()
Signed-off-by: Tatyana Brokhman <tlinder@codeaurora.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/usb/composite.h')
-rw-r--r-- | include/linux/usb/composite.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/linux/usb/composite.h b/include/linux/usb/composite.h index 2014d6b1babc..99830d63d8f1 100644 --- a/include/linux/usb/composite.h +++ b/include/linux/usb/composite.h | |||
@@ -148,21 +148,6 @@ int usb_interface_id(struct usb_configuration *, struct usb_function *); | |||
148 | int config_ep_by_speed(struct usb_gadget *g, struct usb_function *f, | 148 | int config_ep_by_speed(struct usb_gadget *g, struct usb_function *f, |
149 | struct usb_ep *_ep); | 149 | struct usb_ep *_ep); |
150 | 150 | ||
151 | /** | ||
152 | * ep_choose - select descriptor endpoint at current device speed | ||
153 | * @g: gadget, connected and running at some speed | ||
154 | * @hs: descriptor to use for high speed operation | ||
155 | * @fs: descriptor to use for full or low speed operation | ||
156 | */ | ||
157 | static inline struct usb_endpoint_descriptor * | ||
158 | ep_choose(struct usb_gadget *g, struct usb_endpoint_descriptor *hs, | ||
159 | struct usb_endpoint_descriptor *fs) | ||
160 | { | ||
161 | if (gadget_is_dualspeed(g) && g->speed == USB_SPEED_HIGH) | ||
162 | return hs; | ||
163 | return fs; | ||
164 | } | ||
165 | |||
166 | #define MAX_CONFIG_INTERFACES 16 /* arbitrary; max 255 */ | 151 | #define MAX_CONFIG_INTERFACES 16 /* arbitrary; max 255 */ |
167 | 152 | ||
168 | /** | 153 | /** |