From 45a36e57768882bed0b7ac654f8f249e5fd65a6f Mon Sep 17 00:00:00 2001 From: xj Date: Thu, 8 Aug 2024 20:20:28 -0700 Subject: [PATCH] Add interrupt processing functions --- .../services/drivers/usb/components/port/xhci/usb_hc_xhci.c | 4 ++++ .../services/drivers/usb/components/port/xhci/usb_hc_xhci.h | 1 + 2 files changed, 5 insertions(+) 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);