Hi Mauro, Today's linux-next merge of the v4l-dvb tree got a conflict in drivers/media/video/zr364xx.c between commit 8aac48f4f2460b00468fd5f1101addf3df04e94c ("USB: remove info() macro from usb.h") from the usb tree and commit dcdbac23cc15325ae04696803537b35bb0bcb3cb ("V4L/DVB (8613): v4l: move BKL down to the driver level") from the v4l-dvb tree. A context clashing change and addition. I fixed it up (see below) and can carry it. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ diff --cc drivers/media/video/zr364xx.c index 5eb8cb8,4e1ef10..0000000 --- a/drivers/media/video/zr364xx.c +++ b/drivers/media/video/zr364xx.c @@@ -651,7 -653,8 +654,8 @@@ static int zr364xx_open(struct inode *i if (!cam->framebuf) { cam->framebuf = vmalloc_32(MAX_FRAME_SIZE * FRAMES); if (!cam->framebuf) { - info("vmalloc_32 failed!"); + dev_err(&cam->udev->dev, "vmalloc_32 failed!\n"); + unlock_kernel(); return -ENOMEM; } } @@@ -663,9 -666,9 +667,10 @@@ 0, init[cam->method][i].bytes, init[cam->method][i].size); if (err < 0) { - info("error during open sequence: %d", i); + dev_err(&cam->udev->dev, + "error during open sequence: %d\n", i); mutex_unlock(&cam->lock); + unlock_kernel(); return err; } } -- 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