From 825b51a6a8e7cf6ebef9477879a43ca7d89a313b Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Mon, 21 Nov 2016 17:27:43 +0000 Subject: [PATCH] usb: dwc_otg: fix missing includes Went awol merging something :( (Yes, dwc_otg is theoretically shared with efm and co, but at present it's still pretty much the stm32 version) Fixes: 422d708384c76b8bf3a860bdd084e3010e28afa0 --- lib/usb/usb_f107.c | 1 + lib/usb/usb_f207.c | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/usb/usb_f107.c b/lib/usb/usb_f107.c index 924ac3a6..1620482b 100644 --- a/lib/usb/usb_f107.c +++ b/lib/usb/usb_f107.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include "usb_private.h" #include "usb_fx07_common.h" diff --git a/lib/usb/usb_f207.c b/lib/usb/usb_f207.c index 7a940c72..40f1efce 100644 --- a/lib/usb/usb_f207.c +++ b/lib/usb/usb_f207.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include "usb_private.h" #include "usb_fx07_common.h"