diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-10-26 12:28:22 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-10-26 12:28:22 +0000 |
commit | 6eab72aacff3780ece128b9eaad977f910c07873 (patch) | |
tree | c8429e86c9420df4583265bf6931eb5d14c2fc93 | |
parent | d47ce46522242c3be16aacafcdb5b978ff91c018 (diff) | |
download | ChibiOS-6eab72aacff3780ece128b9eaad977f910c07873.tar.gz ChibiOS-6eab72aacff3780ece128b9eaad977f910c07873.tar.bz2 ChibiOS-6eab72aacff3780ece128b9eaad977f910c07873.zip |
Fixed bug #541.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7428 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/ports/STM32/LLD/OTGv1/usb_lld.c | 4 |
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 085722c3e..100539410 100644 --- a/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c +++ b/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c @@ -760,7 +760,7 @@ void usb_lld_init(void) { (uint8_t *)wsp + sizeof(thread_t),
CH_DBG_THREAD_FILL_VALUE);
_thread_memfill((uint8_t *)wsp + sizeof(thread_t),
- (uint8_t *)wsp + sizeof(USBD1.wa_pump) - sizeof(thread_t),
+ (uint8_t *)wsp + sizeof(USBD1.wa_pump),
CH_DBG_STACK_FILL_VALUE);
}
#endif /* CH_DBG_FILL_THREADS */
@@ -784,7 +784,7 @@ void usb_lld_init(void) { (uint8_t *)wsp + sizeof(thread_t),
CH_DBG_THREAD_FILL_VALUE);
_thread_memfill((uint8_t *)wsp + sizeof(thread_t),
- (uint8_t *)wsp + sizeof(USBD2.wa_pump) - sizeof(thread_t),
+ (uint8_t *)wsp + sizeof(USBD2.wa_pump),
CH_DBG_STACK_FILL_VALUE);
}
#endif /* CH_DBG_FILL_THREADS */
|