The patch titled : quickcam_messenger compilation fix has been added to the -mm tree. Its filename is quickcam_messenger-compilation-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: : quickcam_messenger compilation fix From: Diego Calleja <diegocg@xxxxxxxxx> In bugzilla #6943, Maxim Britov reported: "I can enable Logitech quickcam support in .config, but it want be compile. I have to add into drivers/media/video/Makefile: obj-$(CONFIG_USB_QUICKCAM_MESSENGER) += usbvideo/" He's right, just enable that driver as module while disabling every other driver that gets into that directory, nothing will get compiled. This patch fixes the Makefile. Signed-off-by: Diego Calleja <diegocg@xxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/media/video/Makefile | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/media/video/Makefile~quickcam_messenger-compilation-fix drivers/media/video/Makefile --- a/drivers/media/video/Makefile~quickcam_messenger-compilation-fix +++ a/drivers/media/video/Makefile @@ -90,6 +90,7 @@ obj-$(CONFIG_USB_ZC0301) += zc030 obj-$(CONFIG_USB_IBMCAM) += usbvideo/ obj-$(CONFIG_USB_KONICAWC) += usbvideo/ obj-$(CONFIG_USB_VICAM) += usbvideo/ +obj-$(CONFIG_USB_QUICKCAM_MESSENGER) += usbvideo/ obj-$(CONFIG_VIDEO_VIVI) += vivi.o _ Patches currently in -mm which might be from diegocg@xxxxxxxxx are quickcam_messenger-compilation-fix.patch mm-thrash-detect-process-thrashing-against-itself.patch ide-support-for-via-8237a-southbridge.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