aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/STM32/LLD
diff options
context:
space:
mode:
authorbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-09-15 07:00:37 +0000
committerbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-09-15 07:00:37 +0000
commita8e8a1bd6d0b005a62e5ca2280e0d965d5900938 (patch)
treec9c64adc45a90b5c5ffbcb81d7e058e9fd67e998 /os/hal/ports/STM32/LLD
parent4695cf54893dd14f6db534bfbc1abb2bdc6732e0 (diff)
downloadChibiOS-a8e8a1bd6d0b005a62e5ca2280e0d965d5900938.tar.gz
ChibiOS-a8e8a1bd6d0b005a62e5ca2280e0d965d5900938.tar.bz2
ChibiOS-a8e8a1bd6d0b005a62e5ca2280e0d965d5900938.zip
Fixed typo (chSysLockFromIsr -> chSysLockFromISR)
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7279 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/STM32/LLD')
-rw-r--r--os/hal/ports/STM32/LLD/OTGv1/usb_lld.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c b/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c
index cf22ac91e..085722c3e 100644
--- a/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c
+++ b/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c
@@ -602,9 +602,9 @@ static void otg_epout_handler(USBDriver *usbp, usbep_t ep) {
osp->rxsize = osp->totsize - osp->rxsize;
osp->rxcnt = 0;
usb_lld_prepare_receive(usbp, ep);
- chSysLockFromIsr();
+ chSysLockFromISR();
usb_lld_start_out(usbp, ep);
- chSysUnlockFromIsr();
+ chSysUnlockFromISR();
}
else {
/* End on OUT transfer.*/