The patch titled usb: pwc-if free urb cleanup has been removed from the -mm tree. Its filename was usb-pwc-if-free-urb-cleanup.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: usb: pwc-if 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/media/video/pwc/pwc-if.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/media/video/pwc/pwc-if.c~usb-pwc-if-free-urb-cleanup drivers/media/video/pwc/pwc-if.c --- a/drivers/media/video/pwc/pwc-if.c~usb-pwc-if-free-urb-cleanup +++ a/drivers/media/video/pwc/pwc-if.c @@ -867,8 +867,7 @@ int pwc_isoc_init(struct pwc_device *pde if (ret) { /* De-allocate in reverse order */ while (i >= 0) { - if (pdev->sbuf[i].urb != NULL) - usb_free_urb(pdev->sbuf[i].urb); + usb_free_urb(pdev->sbuf[i].urb); pdev->sbuf[i].urb = NULL; 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