mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-03-09 15:40:20 +00:00
Add kernel 5.15 for RPI4 support
This commit is contained in:
parent
e961d478cd
commit
df88a19bbd
638 changed files with 239907 additions and 0 deletions
|
@ -0,0 +1,29 @@
|
|||
From d9add7cdbabe9d88523ff0b096ef93ae3c946cce Mon Sep 17 00:00:00 2001
|
||||
From: wangzx <593074943@qq.com>
|
||||
Date: Tue, 20 Apr 2021 22:33:26 +0800
|
||||
Subject: [PATCH 399/634] dwc_otg: fix an undeclared variable Replace an
|
||||
undeclared variable used by DWC_DEBUGPL with the real endpoint address.
|
||||
DWC_DEBUGPL does nothing with DEBUG undefined so it did not go wrong before.
|
||||
Signed-off-by: Zixuan Wang <wangzixuan@sjtu.edu.cn>
|
||||
|
||||
---
|
||||
drivers/usb/host/dwc_otg/dwc_otg_hcd_linux.c | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/drivers/usb/host/dwc_otg/dwc_otg_hcd_linux.c b/drivers/usb/host/dwc_otg/dwc_otg_hcd_linux.c
|
||||
index 50c8705185ad..2ee27450c6f6 100644
|
||||
--- a/drivers/usb/host/dwc_otg/dwc_otg_hcd_linux.c
|
||||
+++ b/drivers/usb/host/dwc_otg/dwc_otg_hcd_linux.c
|
||||
@@ -1026,7 +1026,8 @@ static void endpoint_reset(struct usb_hcd *hcd, struct usb_host_endpoint *ep)
|
||||
dwc_irqflags_t flags;
|
||||
dwc_otg_hcd_t *dwc_otg_hcd = hcd_to_dwc_otg_hcd(hcd);
|
||||
|
||||
- DWC_DEBUGPL(DBG_HCD, "DWC OTG HCD EP RESET: Endpoint Num=0x%02d\n", epnum);
|
||||
+ DWC_DEBUGPL(DBG_HCD, "DWC OTG HCD EP RESET: Endpoint Num=0x%02d\n",
|
||||
+ ep->desc.bEndpointAddress);
|
||||
|
||||
DWC_SPINLOCK_IRQSAVE(dwc_otg_hcd->lock, &flags);
|
||||
if (ep->hcpriv) {
|
||||
--
|
||||
2.33.1
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue