These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
23 lines
842 B
Diff
23 lines
842 B
Diff
From 3b932598ce088f9287a6fccb64c5ffc6af88a8da Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Mon, 14 Apr 2025 15:22:57 +0100
|
|
Subject: [PATCH] fixup! Add dwc_otg driver
|
|
|
|
Fixes: https://github.com/raspberrypi/linux/issues/6786
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
drivers/usb/host/dwc_otg/dwc_otg_fiq_fsm.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/usb/host/dwc_otg/dwc_otg_fiq_fsm.c
|
|
+++ b/drivers/usb/host/dwc_otg/dwc_otg_fiq_fsm.c
|
|
@@ -64,7 +64,7 @@ void notrace _fiq_print(enum fiq_debug_l
|
|
|
|
if((dbg_lvl & dbg_lvl_req) || dbg_lvl == FIQDBG_ERR)
|
|
{
|
|
- snprintf(text, 9, " %4d:%1u ", hfnum.b.frnum/8, hfnum.b.frnum & 7);
|
|
+ snprintf(text, 9, " %4d:%1u ", hfnum.b.frnum/8, hfnum.b.frnum & 7);
|
|
va_start(args, fmt);
|
|
vsnprintf(text+8, 9, fmt, args);
|
|
va_end(args);
|