From 1286b18ca9bfb18b87e67d87defee45d231b14e7 Mon Sep 17 00:00:00 2001 From: Koen Zandberg Date: Tue, 26 Mar 2019 16:09:03 +0100 Subject: [PATCH] sam0_common: Fix syntax mistake in usbdev driver --- cpu/sam0_common/periph/usbdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/sam0_common/periph/usbdev.c b/cpu/sam0_common/periph/usbdev.c index b12e6a7955..649c0503a0 100644 --- a/cpu/sam0_common/periph/usbdev.c +++ b/cpu/sam0_common/periph/usbdev.c @@ -457,7 +457,7 @@ static void _ep_enable(usbdev_ep_t *ep) case USB_EP_TYPE_INTERRUPT: type = 0x04; break; - case default: + default: /* Must never happen */ assert(false); }