The patch titled
usb: iforce-usb free urb cleanup
has been removed from the -mm tree. Its filename was
usb-iforce-usb-free-urb-cleanup.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
Subject: usb: iforce-usb free urb cleanup
From: Mariusz Kozlowski <[EMAIL PROTECTED]>
usb_free_urb() cleanup
Signed-off-by: Mariusz Kozlowski <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/input/joystick/iforce/iforce-usb.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff -puN
drivers/input/joystick/iforce/iforce-usb.c~usb-iforce-usb-free-urb-cleanup
drivers/input/joystick/iforce/iforce-usb.c
--- a/drivers/input/joystick/iforce/iforce-usb.c~usb-iforce-usb-free-urb-cleanup
+++ a/drivers/input/joystick/iforce/iforce-usb.c
@@ -178,9 +178,9 @@ static int iforce_usb_probe(struct usb_i
fail:
if (iforce) {
- if (iforce->irq) usb_free_urb(iforce->irq);
- if (iforce->out) usb_free_urb(iforce->out);
- if (iforce->ctrl) usb_free_urb(iforce->ctrl);
+ usb_free_urb(iforce->irq);
+ usb_free_urb(iforce->out);
+ usb_free_urb(iforce->ctrl);
kfree(iforce);
}
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
i2lib-unused-variable-cleanup.patch
make-1-bit-bitfields-unsigned.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html