summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/class/vendor/vendor_device.c (renamed from src/class/custom/custom_device.c)2
-rw-r--r--src/class/vendor/vendor_device.h (renamed from src/class/custom/custom_device.h)0
-rw-r--r--src/class/vendor/vendor_host.c (renamed from src/class/custom/custom_host.c)2
-rw-r--r--src/class/vendor/vendor_host.h (renamed from src/class/custom/custom_host.h)0
-rw-r--r--src/tusb.h4
5 files changed, 4 insertions, 4 deletions
diff --git a/src/class/custom/custom_device.c b/src/class/vendor/vendor_device.c
index cf9aa3b3f..2f7bba16a 100644
--- a/src/class/custom/custom_device.c
+++ b/src/class/vendor/vendor_device.c
@@ -29,7 +29,7 @@
#if (TUSB_OPT_DEVICE_ENABLED && CFG_TUD_VENDOR)
#include "common/tusb_common.h"
-#include "custom_device.h"
+#include "vendor_device.h"
#include "device/usbd_pvt.h"
/*------------------------------------------------------------------*/
diff --git a/src/class/custom/custom_device.h b/src/class/vendor/vendor_device.h
index c4001a89f..c4001a89f 100644
--- a/src/class/custom/custom_device.h
+++ b/src/class/vendor/vendor_device.h
diff --git a/src/class/custom/custom_host.c b/src/class/vendor/vendor_host.c
index ebe257e61..3e8dac0f6 100644
--- a/src/class/custom/custom_host.c
+++ b/src/class/vendor/vendor_host.c
@@ -32,7 +32,7 @@
// INCLUDE
//--------------------------------------------------------------------+
#include "common/tusb_common.h"
-#include "custom_host.h"
+#include "vendor_host.h"
//--------------------------------------------------------------------+
// MACRO CONSTANT TYPEDEF
diff --git a/src/class/custom/custom_host.h b/src/class/vendor/vendor_host.h
index 2ca16222a..2ca16222a 100644
--- a/src/class/custom/custom_host.h
+++ b/src/class/vendor/vendor_host.h
diff --git a/src/tusb.h b/src/tusb.h
index 3f6673ae1..fe8673726 100644
--- a/src/tusb.h
+++ b/src/tusb.h
@@ -55,7 +55,7 @@
#endif
#if CFG_TUH_VENDOR
- #include "class/custom_host.h"
+ #include "class/vendor/vendor_host.h"
#endif
#endif
@@ -81,7 +81,7 @@
#endif
#if CFG_TUD_VENDOR
- #include "class/custom/custom_device.h"
+ #include "class/vendor/vendor_device.h"
#endif
#endif