From a9472ba1a1f64e3ba4f56f5140d7839c3b066c25 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 3 May 2014 07:24:35 +0000 Subject: Fixed bug #493. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6906 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/ports/STM32/LLD/OTGv1/usb_lld.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'os/hal/ports/STM32/LLD/OTGv1') diff --git a/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c b/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c index 409fa809a..83997cc18 100644 --- a/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c +++ b/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c @@ -740,10 +740,10 @@ void usb_lld_init(void) { { void *wsp = USBD1.wa_pump; _thread_memfill((uint8_t *)wsp, - (uint8_t *)wsp + sizeof(Thread), + (uint8_t *)wsp + sizeof(thread_t), CH_DBG_THREAD_FILL_VALUE); - _thread_memfill((uint8_t *)wsp + sizeof(Thread), - (uint8_t *)wsp + sizeof(USBD1.wa_pump) - sizeof(Thread), + _thread_memfill((uint8_t *)wsp + sizeof(thread_t), + (uint8_t *)wsp + sizeof(USBD1.wa_pump) - sizeof(thread_t), CH_DBG_STACK_FILL_VALUE); } #endif /* CH_DBG_FILL_THREADS */ @@ -764,10 +764,10 @@ void usb_lld_init(void) { { void *wsp = USBD2.wa_pump; _thread_memfill((uint8_t *)wsp, - (uint8_t *)wsp + sizeof(Thread), + (uint8_t *)wsp + sizeof(thread_t), CH_DBG_THREAD_FILL_VALUE); - _thread_memfill((uint8_t *)wsp + sizeof(Thread), - (uint8_t *)wsp + sizeof(USBD2.wa_pump) - sizeof(Thread), + _thread_memfill((uint8_t *)wsp + sizeof(thread_t), + (uint8_t *)wsp + sizeof(USBD2.wa_pump) - sizeof(thread_t), CH_DBG_STACK_FILL_VALUE); } #endif /* CH_DBG_FILL_THREADS */ -- cgit v1.2.3