From: Greg Kroah-Hartman Date: Tue, 19 Jan 2021 18:11:43 +0000 (+0100) Subject: 4.14-stable patches X-Git-Tag: v4.4.253~37 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b3068697ea3784fe16ce79a6faf76ae4114c9ed6;p=thirdparty%2Fkernel%2Fstable-queue.git 4.14-stable patches added patches: usb-ohci-make-distrust_firmware-param-default-to-false.patch --- diff --git a/queue-4.14/series b/queue-4.14/series index 03508f7ced2..4542ecdb0f8 100644 --- a/queue-4.14/series +++ b/queue-4.14/series @@ -30,3 +30,4 @@ dm-eliminate-potential-source-of-excessive-kernel-log-noise.patch alsa-firewire-tascam-fix-integer-overflow-in-midi_port_work.patch alsa-fireface-fix-integer-overflow-in-transmit_midi_msg.patch netfilter-conntrack-fix-reading-nf_conntrack_buckets.patch +usb-ohci-make-distrust_firmware-param-default-to-false.patch diff --git a/queue-4.14/usb-ohci-make-distrust_firmware-param-default-to-false.patch b/queue-4.14/usb-ohci-make-distrust_firmware-param-default-to-false.patch new file mode 100644 index 00000000000..5c5e9366ac9 --- /dev/null +++ b/queue-4.14/usb-ohci-make-distrust_firmware-param-default-to-false.patch @@ -0,0 +1,34 @@ +From c4005a8f65edc55fb1700dfc5c1c3dc58be80209 Mon Sep 17 00:00:00 2001 +From: Hamish Martin +Date: Fri, 11 Sep 2020 09:25:12 +1200 +Subject: usb: ohci: Make distrust_firmware param default to false + +From: Hamish Martin + +commit c4005a8f65edc55fb1700dfc5c1c3dc58be80209 upstream. + +The 'distrust_firmware' module parameter dates from 2004 and the USB +subsystem is a lot more mature and reliable now than it was then. +Alter the default to false now. + +Suggested-by: Alan Stern +Acked-by: Alan Stern +Signed-off-by: Hamish Martin +Link: https://lore.kernel.org/r/20200910212512.16670-2-hamish.martin@alliedtelesis.co.nz +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/usb/host/ohci-hcd.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/drivers/usb/host/ohci-hcd.c ++++ b/drivers/usb/host/ohci-hcd.c +@@ -100,7 +100,7 @@ static void io_watchdog_func(unsigned lo + + + /* Some boards misreport power switching/overcurrent */ +-static bool distrust_firmware = true; ++static bool distrust_firmware; + module_param (distrust_firmware, bool, 0); + MODULE_PARM_DESC (distrust_firmware, + "true to distrust firmware power/overcurrent setup");