summaryrefslogtreecommitdiff
path: root/src/portable/chipidea
diff options
context:
space:
mode:
authorhathach <[email protected]>2022-03-07 23:05:05 +0700
committerhathach <[email protected]>2022-03-07 23:05:05 +0700
commit606f932d92322a71960f51148ecc91eaf29bf507 (patch)
tree10140f875d719d5b0c296b0f5bcf018a1687910e /src/portable/chipidea
parent85dbcf5473f8f5d914c4c468715c5381ab2a6603 (diff)
added dcd_sof_enable() stubs for all other ports
Diffstat (limited to 'src/portable/chipidea')
-rw-r--r--src/portable/chipidea/ci_hs/dcd_ci_hs.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/portable/chipidea/ci_hs/dcd_ci_hs.c b/src/portable/chipidea/ci_hs/dcd_ci_hs.c
index 32c2fc029..41d2f1870 100644
--- a/src/portable/chipidea/ci_hs/dcd_ci_hs.c
+++ b/src/portable/chipidea/ci_hs/dcd_ci_hs.c
@@ -266,6 +266,14 @@ void dcd_disconnect(uint8_t rhport)
dcd_reg->USBCMD &= ~USBCMD_RUN_STOP;
}
+void dcd_sof_enable(uint8_t rhport, bool en)
+{
+ (void) rhport;
+ (void) en;
+
+ // TODO implement later
+}
+
//--------------------------------------------------------------------+
// HELPER
//--------------------------------------------------------------------+