Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Stolyarov <i.stolyarov@thirdpin.ru>2019-07-10 20:27:52 +0300
committerIlya Stolyarov <i.stolyarov@thirdpin.ru>2019-07-10 20:27:52 +0300
commitec3a1a8662e68d486c5f681070d03bea01f78cfb (patch)
treeff379378dc5becded7e74a30b716dd9bc1c768da
parenta7f50526953c649dab9ed29afe8fecdfae39f99d (diff)
FIX: [usb] Forgotten semicolon
-rw-r--r--lib/usb/usb_dwc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/usb/usb_dwc.c b/lib/usb/usb_dwc.c
index dc9b0d6e..161b9cbd 100644
--- a/lib/usb/usb_dwc.c
+++ b/lib/usb/usb_dwc.c
@@ -127,9 +127,9 @@ static usbd_device *stm32_dwc_usbd_init(void)
static usbd_device *stm32_dwc_ulpi_usbd_init(void)
{
rcc_periph_clock_enable(RCC_OTGHS);
- pipeline_stall()
+ pipeline_stall();
rcc_periph_clock_enable(RCC_OTGHSULPI);
- pipeline_stall()
+ pipeline_stall();
/* Wait for AHB idle. */
while (!(OTG_HS_GRSTCTL & OTG_GRSTCTL_AHBIDL));