summaryrefslogtreecommitdiffstats
path: root/usb
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2017-05-18 19:31:00 +0100
committerTomasz Kramkowski <tk@the-tk.com>2017-05-18 19:31:00 +0100
commit98f075af24dc60a5179511db7b84dbb62d8d80a1 (patch)
tree56f62b18f928b27086b07535576d7ae2d0b3c058 /usb
parentfee379e0042b8232ca1b106fd02134ce4451953e (diff)
downloadfmk-98f075af24dc60a5179511db7b84dbb62d8d80a1.tar.gz
fmk-98f075af24dc60a5179511db7b84dbb62d8d80a1.tar.xz
fmk-98f075af24dc60a5179511db7b84dbb62d8d80a1.zip
move uart implementation out of subdirectory
Diffstat (limited to 'usb')
-rw-r--r--usb/endpt1.c2
-rw-r--r--usb/usb.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/usb/endpt1.c b/usb/endpt1.c
index 3139104..0580349 100644
--- a/usb/endpt1.c
+++ b/usb/endpt1.c
@@ -20,7 +20,7 @@
#include <stddef.h>
#include <stdint.h>
-#include "../uart/uart.h"
+#include "../uart.h"
#include "bdt.h"
#include "endpt1.h"
diff --git a/usb/usb.c b/usb/usb.c
index 5f00fe0..252268e 100644
--- a/usb/usb.c
+++ b/usb/usb.c
@@ -22,7 +22,7 @@
#include <reg/usbotg.h>
#include <stddef.h>
-#include "../uart/uart.h"
+#include "../uart.h"
#include "usb.h"
#include "bdt.h"
#include "endpt0.h"