aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include/hal_usbh.h
diff options
context:
space:
mode:
authorDiego Ismirlian <dismirlian (at) google's mail.com>2017-06-06 09:23:07 -0300
committerDiego Ismirlian <dismirlian (at) google's mail.com>2017-06-06 09:23:07 -0300
commit108ae2534cf5e487b569ea34bdae4e86b9c2d024 (patch)
tree8f7489782e72c9ed7c729c824ec9c96d2ad6a480 /os/hal/include/hal_usbh.h
parent0bf5a7aa4c0d6dcf8660d200452b584ef107eed5 (diff)
downloadChibiOS-Contrib-108ae2534cf5e487b569ea34bdae4e86b9c2d024.tar.gz
ChibiOS-Contrib-108ae2534cf5e487b569ea34bdae4e86b9c2d024.tar.bz2
ChibiOS-Contrib-108ae2534cf5e487b569ea34bdae4e86b9c2d024.zip
Fixed endpoint halt reset implementation
Diffstat (limited to 'os/hal/include/hal_usbh.h')
-rw-r--r--os/hal/include/hal_usbh.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/os/hal/include/hal_usbh.h b/os/hal/include/hal_usbh.h
index bc79880..2684aca 100644
--- a/os/hal/include/hal_usbh.h
+++ b/os/hal/include/hal_usbh.h
@@ -373,14 +373,7 @@ extern "C" {
usbhEPCloseS(ep);
osalSysUnlock();
}
- bool usbhEPResetS(usbh_ep_t *ep);
- static inline bool usbhEPReset(usbh_ep_t *ep) {
- bool ret;
- osalSysLock();
- ret = usbhEPResetS(ep);
- osalSysUnlock();
- return ret;
- }
+ bool usbhEPReset(usbh_ep_t *ep);
static inline bool usbhEPIsPeriodic(usbh_ep_t *ep) {
osalDbgCheck(ep != NULL);
return (ep->type & 1) != 0;