Hi Greg, Today's linux-next merge of the usb tree got a conflict in drivers/media/video/gspca/gspca.c between commit 659a02869f4a8be95df9efa76af02e53e400555f ("V4L/DVB: gspca - main: Convert wMaxPacketSize from little endian 16 to cpu") from the v4l-dvb tree and commit 42b4658241d4c16c838daf9d63c0029cd7269fe0 ("USB: rename usb_buffer_alloc() and usb_buffer_free() users") from the usb tree. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc drivers/media/video/gspca/gspca.c index efe6159,00713f8..0000000 --- a/drivers/media/video/gspca/gspca.c +++ b/drivers/media/video/gspca/gspca.c @@@ -213,7 -213,7 +213,7 @@@ static int alloc_and_submit_int_urb(str goto error; } - buffer = usb_buffer_alloc(dev, buffer_len, - buffer = usb_alloc_coherent(dev, ep->wMaxPacketSize, ++ buffer = usb_alloc_coherent(dev, buffer_len, GFP_KERNEL, &urb->transfer_dma); if (!buffer) { ret = -ENOMEM; -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html