The patch titled usb: phidgetkit free urb cleanup has been removed from the -mm tree. Its filename was usb-phidgetkit-free-urb-cleanup.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: usb: phidgetkit 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/misc/phidgetkit.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/usb/misc/phidgetkit.c~usb-phidgetkit-free-urb-cleanup drivers/usb/misc/phidgetkit.c --- a/drivers/usb/misc/phidgetkit.c~usb-phidgetkit-free-urb-cleanup +++ a/drivers/usb/misc/phidgetkit.c @@ -650,8 +650,7 @@ out2: device_remove_file(kit->dev, &dev_output_attrs[i]); out: if (kit) { - if (kit->irq) - usb_free_urb(kit->irq); + usb_free_urb(kit->irq); if (kit->data) usb_buffer_free(dev, URB_INT_SIZE, kit->data, kit->data_dma); if (kit->dev) _ 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