Add dwc3 codes

This commit is contained in:
xj 2024-09-09 23:18:33 -07:00
parent 6229f7b1c8
commit f6ae7d7b13
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,14 @@
#include "rk3568_usb.h"
struct dwc3 dwc3_rk3568[CONFIG_USBHOST_XHCI_NUM];
int dwc3_generic_host_probe(uint32_t id){
return 0;
}
int dwc3_generic_probe(uint32_t id){
return 0;
}

View File

@ -3,6 +3,7 @@
#include "dwc3.h"
int dwc3_generic_host_probe(uint32_t id);
int dwc3_generic_probe(uint32_t id);
#endif