diff --git a/Ubiquitous/XiZi_AIoT/services/drivers/usb/components/port/xhci/usb_hc_xhci.c b/Ubiquitous/XiZi_AIoT/services/drivers/usb/components/port/xhci/usb_hc_xhci.c index 9d5d72de4..e3ffe3e0f 100644 --- a/Ubiquitous/XiZi_AIoT/services/drivers/usb/components/port/xhci/usb_hc_xhci.c +++ b/Ubiquitous/XiZi_AIoT/services/drivers/usb/components/port/xhci/usb_hc_xhci.c @@ -1085,3 +1085,7 @@ int bind_xhci_intr(void *para){ return 0; } + +int create_xhci_intr_service(void *para){ + return 0; +} diff --git a/Ubiquitous/XiZi_AIoT/services/drivers/usb/components/port/xhci/usb_hc_xhci.h b/Ubiquitous/XiZi_AIoT/services/drivers/usb/components/port/xhci/usb_hc_xhci.h index 5cd9fa556..eaef45fea 100644 --- a/Ubiquitous/XiZi_AIoT/services/drivers/usb/components/port/xhci/usb_hc_xhci.h +++ b/Ubiquitous/XiZi_AIoT/services/drivers/usb/components/port/xhci/usb_hc_xhci.h @@ -165,6 +165,7 @@ __WEAK int usb_hc_get_register_id(unsigned long base_addr); __WEAK unsigned long usb_hc_get_register_vir_base(uint32_t id); int bind_xhci_intr(void *para); +int create_xhci_intr_service(void *para); IPC_SERVICES(IpcXhciIntrHandler, Ipc_xhci_intr);