Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3b8d7321 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Revert "USB: EHCI: support running URB giveback in tasklet context"



This reverts commit 428aac8a.

This isn't quite ready for 3.12, we need some more EHCI driver changes
that are just now showing up.  So revert this for now, and queue it up
later for 3.13.

Reported-by: default avatarAlan Stern <stern@rowland.harvard.edu>
Cc: Ming Lei <ming.lei@canonical.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 272b98c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -669,7 +669,7 @@ static const struct hc_driver ehci_fsl_hc_driver = {
	 * generic hardware linkage
	 */
	.irq = ehci_irq,
	.flags = HCD_USB2 | HCD_MEMORY | HCD_BH,
	.flags = HCD_USB2 | HCD_MEMORY,

	/*
	 * basic lifecycle operations
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ static const struct hc_driver ehci_grlib_hc_driver = {
	 * generic hardware linkage
	 */
	.irq			= ehci_irq,
	.flags			= HCD_MEMORY | HCD_USB2 | HCD_BH,
	.flags			= HCD_MEMORY | HCD_USB2,

	/*
	 * basic lifecycle operations
+1 −1
Original line number Diff line number Diff line
@@ -1158,7 +1158,7 @@ static const struct hc_driver ehci_hc_driver = {
	 * generic hardware linkage
	 */
	.irq =			ehci_irq,
	.flags =		HCD_MEMORY | HCD_USB2 | HCD_BH,
	.flags =		HCD_MEMORY | HCD_USB2,

	/*
	 * basic lifecycle operations
+1 −1
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ static const struct hc_driver mv_ehci_hc_driver = {
	 * generic hardware linkage
	 */
	.irq = ehci_irq,
	.flags = HCD_MEMORY | HCD_USB2 | HCD_BH,
	.flags = HCD_MEMORY | HCD_USB2,

	/*
	 * basic lifecycle operations
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ static const struct hc_driver ehci_octeon_hc_driver = {
	 * generic hardware linkage
	 */
	.irq			= ehci_irq,
	.flags			= HCD_MEMORY | HCD_USB2 | HCD_BH,
	.flags			= HCD_MEMORY | HCD_USB2,

	/*
	 * basic lifecycle operations
Loading