From 91d06a23b3e8cc9006b29cf35aebcbdcf7221d98 Mon Sep 17 00:00:00 2001 From: xj Date: Fri, 9 Aug 2024 01:07:10 -0700 Subject: [PATCH] Add interrupt processing functions --- .../drivers/usb/components/port/xhci/usb_hc_xhci.c | 13 +++++++++++++ 1 file changed, 13 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 e3ffe3e0f..075d29207 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 @@ -1087,5 +1087,18 @@ int bind_xhci_intr(void *para){ } int create_xhci_intr_service(void *para){ + struct xhci_host *xhci; + int tid; + + + xhci = (struct xhci_host *)para; + + if(xhci == NULL){ + return -1; + } + + + // tid = thread(); + return 0; }