summaryrefslogtreecommitdiff
path: root/tinyusb/host
diff options
context:
space:
mode:
authorhathach <[email protected]>2018-03-12 22:45:35 +0700
committerhathach <[email protected]>2018-03-12 22:45:35 +0700
commit34dbb3532ce4a5dd22cf8e596eb007003c3dd43c (patch)
treef441b1a73c2c17ca02278a2098c0056a44174959 /tinyusb/host
parent6f1565c50eb4043b93b54e53d0bea8e25c7d830c (diff)
more rename
Diffstat (limited to 'tinyusb/host')
-rw-r--r--tinyusb/host/ehci/ehci.c2
-rw-r--r--tinyusb/host/ehci/ehci.h2
-rw-r--r--tinyusb/host/hcd.h2
-rw-r--r--tinyusb/host/hub.h2
-rw-r--r--tinyusb/host/ohci/ohci.c2
-rw-r--r--tinyusb/host/ohci/ohci.h2
-rw-r--r--tinyusb/host/usbh.c2
-rw-r--r--tinyusb/host/usbh_hcd.h2
-rw-r--r--tinyusb/host/usbh_hub.h2
9 files changed, 9 insertions, 9 deletions
diff --git a/tinyusb/host/ehci/ehci.c b/tinyusb/host/ehci/ehci.c
index bf135fdc1..e107b11c8 100644
--- a/tinyusb/host/ehci/ehci.c
+++ b/tinyusb/host/ehci/ehci.c
@@ -36,7 +36,7 @@
*/
/**************************************************************************/
-#include "common/common.h"
+#include "common/tusb_common.h"
#if MODE_HOST_SUPPORTED && (TUSB_CFG_MCU == MCU_LPC43XX || TUSB_CFG_MCU == MCU_LPC18XX)
//--------------------------------------------------------------------+
diff --git a/tinyusb/host/ehci/ehci.h b/tinyusb/host/ehci/ehci.h
index 0c37fba97..aa91d629a 100644
--- a/tinyusb/host/ehci/ehci.h
+++ b/tinyusb/host/ehci/ehci.h
@@ -45,7 +45,7 @@
#ifndef _TUSB_EHCI_H_
#define _TUSB_EHCI_H_
-#include "common/common.h"
+#include "common/tusb_common.h"
#include "../hcd.h"
/* Abbreviation
diff --git a/tinyusb/host/hcd.h b/tinyusb/host/hcd.h
index 57ba7dbbe..2b27cc127 100644
--- a/tinyusb/host/hcd.h
+++ b/tinyusb/host/hcd.h
@@ -47,7 +47,7 @@
extern "C" {
#endif
-#include "common/common.h"
+#include <common/tusb_common.h>
#if MODE_HOST_SUPPORTED
// Max number of endpoints per device
diff --git a/tinyusb/host/hub.h b/tinyusb/host/hub.h
index 665765a2a..512d14742 100644
--- a/tinyusb/host/hub.h
+++ b/tinyusb/host/hub.h
@@ -48,7 +48,7 @@
#ifndef _TUSB_HUB_H_
#define _TUSB_HUB_H_
-#include "common/common.h"
+#include <common/tusb_common.h>
#include "usbh.h"
#ifdef __cplusplus
diff --git a/tinyusb/host/ohci/ohci.c b/tinyusb/host/ohci/ohci.c
index f4fea2b01..7395730f3 100644
--- a/tinyusb/host/ohci/ohci.c
+++ b/tinyusb/host/ohci/ohci.c
@@ -36,7 +36,7 @@
*/
/**************************************************************************/
-#include "common/common.h"
+#include <common/tusb_common.h>
#if MODE_HOST_SUPPORTED && (TUSB_CFG_MCU == MCU_LPC175X_6X)
//--------------------------------------------------------------------+
diff --git a/tinyusb/host/ohci/ohci.h b/tinyusb/host/ohci/ohci.h
index 3d3607c2f..6c73326af 100644
--- a/tinyusb/host/ohci/ohci.h
+++ b/tinyusb/host/ohci/ohci.h
@@ -49,7 +49,7 @@
extern "C" {
#endif
-#include "common/common.h"
+#include "common/tusb_common.h"
//--------------------------------------------------------------------+
// OHCI CONFIGURATION & CONSTANTS
diff --git a/tinyusb/host/usbh.c b/tinyusb/host/usbh.c
index 3650610da..f007f68bb 100644
--- a/tinyusb/host/usbh.c
+++ b/tinyusb/host/usbh.c
@@ -36,7 +36,7 @@
*/
/**************************************************************************/
-#include "common/common.h"
+#include "common/tusb_common.h"
#if MODE_HOST_SUPPORTED
diff --git a/tinyusb/host/usbh_hcd.h b/tinyusb/host/usbh_hcd.h
index 0f96d4ddc..ac967332e 100644
--- a/tinyusb/host/usbh_hcd.h
+++ b/tinyusb/host/usbh_hcd.h
@@ -49,7 +49,7 @@
//--------------------------------------------------------------------+
// INCLUDE
//--------------------------------------------------------------------+
-#include "common/common.h"
+#include "common/tusb_common.h"
#include "osal/osal.h"
#ifdef _TEST_
diff --git a/tinyusb/host/usbh_hub.h b/tinyusb/host/usbh_hub.h
index c6a8716e5..48a81bcd2 100644
--- a/tinyusb/host/usbh_hub.h
+++ b/tinyusb/host/usbh_hub.h
@@ -45,7 +45,7 @@
//--------------------------------------------------------------------+
// INCLUDE
//--------------------------------------------------------------------+
-#include "common/common.h"
+#include "common/tusb_common.h"
#ifdef __cplusplus
extern "C" {