aboutsummaryrefslogtreecommitdiffstats
path: root/0030-ohci-q.c-move-assignment-out-of-if-block.patch
diff options
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-08-21 16:34:49 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-08-21 16:34:49 +0200
commit4758ee8bc89a86c2110b9e85878538ced8045ef5 (patch)
tree69539cae6631b1981fb23b51e01566f9e84f635d /0030-ohci-q.c-move-assignment-out-of-if-block.patch
parent02611ede94f297e19bea81ddf41425a24569a545 (diff)
downloadpatches-4758ee8bc89a86c2110b9e85878538ced8045ef5.tar.gz
add new patch and remove ones that were long ago merged
Diffstat (limited to '0030-ohci-q.c-move-assignment-out-of-if-block.patch')
-rw-r--r--0030-ohci-q.c-move-assignment-out-of-if-block.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/0030-ohci-q.c-move-assignment-out-of-if-block.patch b/0030-ohci-q.c-move-assignment-out-of-if-block.patch
deleted file mode 100644
index ac6cb2be37bd31..00000000000000
--- a/0030-ohci-q.c-move-assignment-out-of-if-block.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 655a7aabfe2c282e713ded9bee60e38bf2cdc7e6 Mon Sep 17 00:00:00 2001
-From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-Date: Wed, 29 Apr 2015 16:22:29 +0200
-Subject: [PATCH 30/36] USB: ohci-q.c: move assignment out of if () block
-
-We should not be doing assignments within an if () block
-so fix up the code to not do this.
-
-change was created using Coccinelle.
-
-CC: Alan Stern <stern@rowland.harvard.edu>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
----
- drivers/usb/host/ohci-q.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/drivers/usb/host/ohci-q.c b/drivers/usb/host/ohci-q.c
-index 1463c398d322..f7d561ed3c23 100644
---- a/drivers/usb/host/ohci-q.c
-+++ b/drivers/usb/host/ohci-q.c
-@@ -407,7 +407,8 @@ static struct ed *ed_get (
-
- spin_lock_irqsave (&ohci->lock, flags);
-
-- if (!(ed = ep->hcpriv)) {
-+ ed = ep->hcpriv;
-+ if (!ed) {
- struct td *td;
- int is_out;
- u32 info;
---
-2.3.7
-