diff options
| author | Ha Thach <[email protected]> | 2022-05-31 22:25:14 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-05-31 22:25:14 +0700 |
| commit | fdeac8508be5cdd95966422d1e776604efbc9b3f (patch) | |
| tree | e3e1ddf37ebd5500145ac610239f2d5baeceb6fa /src/portable/sony | |
| parent | ab7c23a787a024dcaadb698c9d7533ad85209cd7 (diff) | |
| parent | e384d16d576089daa3a5c993ead06cffb7a50cbe (diff) | |
Merge pull request #1381 from hathach/add-sof-isr
Add SOF IRQ Handler
Diffstat (limited to 'src/portable/sony')
| -rw-r--r-- | src/portable/sony/cxd56/dcd_cxd56.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/portable/sony/cxd56/dcd_cxd56.c b/src/portable/sony/cxd56/dcd_cxd56.c index d3154e58f..6677891a5 100644 --- a/src/portable/sony/cxd56/dcd_cxd56.c +++ b/src/portable/sony/cxd56/dcd_cxd56.c @@ -247,6 +247,14 @@ void dcd_disconnect(uint8_t rhport) DEV_DISCONNECT(usbdev); } +void dcd_sof_enable(uint8_t rhport, bool en) +{ + (void) rhport; + (void) en; + + // TODO implement later +} + //--------------------------------------------------------------------+ // Endpoint API //--------------------------------------------------------------------+ |
