From: Diego Calleja 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 Acked-by: Michael Krufky Cc: Greg KH Signed-off-by: Andrew Morton --- 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 @@ -91,6 +91,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 _