The patch titled usb: ati_remote2 free urb cleanup has been removed from the -mm tree. Its filename was usb-ati_remote2-free-urb-cleanup.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: usb: ati_remote2 free urb cleanup From: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> - usb_free_urb() cleanup Signed-off-by: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/usb/input/ati_remote2.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/usb/input/ati_remote2.c~usb-ati_remote2-free-urb-cleanup drivers/usb/input/ati_remote2.c --- a/drivers/usb/input/ati_remote2.c~usb-ati_remote2-free-urb-cleanup +++ a/drivers/usb/input/ati_remote2.c @@ -372,8 +372,7 @@ static void ati_remote2_urb_cleanup(stru int i; for (i = 0; i < 2; i++) { - if (ar2->urb[i]) - usb_free_urb(ar2->urb[i]); + usb_free_urb(ar2->urb[i]); if (ar2->buf[i]) usb_buffer_free(ar2->udev, 4, ar2->buf[i], ar2->buf_dma[i]); _ Patches currently in -mm which might be from m.kozlowski@xxxxxxxxxx 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 majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html