Revert "linux (RPi): temporarily change FIQ default in dwc_otg to off"

This reverts commit 0a7b9dfc75bc6617168f43f7957c9450effbd2ce.

The issue has been fixed in the RPi linux kernel

Signed-off-by: Matthias Reichl <hias@horus.com>
This commit is contained in:
Matthias Reichl 2022-10-27 14:29:29 +02:00
parent 27ad7a0d11
commit 55eb33a122

View File

@ -1,29 +0,0 @@
From 9f83642b0e91379d8e1891b2c567a9b0a9a1da07 Mon Sep 17 00:00:00 2001
From: Matthias Reichl <hias@horus.com>
Date: Sun, 2 Oct 2022 13:45:46 +0200
Subject: [PATCH] TEMP dwc_otg: change FIQ default to off
Signed-off-by: Matthias Reichl <hias@horus.com>
---
drivers/usb/host/dwc_otg/dwc_otg_driver.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/usb/host/dwc_otg/dwc_otg_driver.c b/drivers/usb/host/dwc_otg/dwc_otg_driver.c
index cb576e553d76a..43b05238c50e2 100644
--- a/drivers/usb/host/dwc_otg/dwc_otg_driver.c
+++ b/drivers/usb/host/dwc_otg/dwc_otg_driver.c
@@ -241,9 +241,9 @@ static struct dwc_otg_driver_module_params dwc_otg_module_params = {
};
//Global variable to switch the fiq fix on or off
-bool fiq_enable = 1;
+bool fiq_enable = 0;
// Global variable to enable the split transaction fix
-bool fiq_fsm_enable = true;
+bool fiq_fsm_enable = false;
//Bulk split-transaction NAK holdoff in microframes
uint16_t nak_holdoff = 8;
--
2.34.1