The patch titled
usb: ati_remote free urb cleanup
has been removed from the -mm tree. Its filename was
usb-ati_remote-free-urb-cleanup.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
Subject: usb: ati_remote 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/usb/input/ati_remote.c | 7 ++-----
1 files changed, 2 insertions(+), 5 deletions(-)
diff -puN drivers/usb/input/ati_remote.c~usb-ati_remote-free-urb-cleanup
drivers/usb/input/ati_remote.c
--- a/drivers/usb/input/ati_remote.c~usb-ati_remote-free-urb-cleanup
+++ a/drivers/usb/input/ati_remote.c
@@ -630,11 +630,8 @@ static int ati_remote_alloc_buffers(stru
*/
static void ati_remote_free_buffers(struct ati_remote *ati_remote)
{
- if (ati_remote->irq_urb)
- usb_free_urb(ati_remote->irq_urb);
-
- if (ati_remote->out_urb)
- usb_free_urb(ati_remote->out_urb);
+ usb_free_urb(ati_remote->irq_urb);
+ usb_free_urb(ati_remote->out_urb);
if (ati_remote->inbuf)
usb_buffer_free(ati_remote->udev, DATA_BUFSIZE,
_
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