Hi Fengguang, On Mon, Sep 30, 2013 at 5:05 AM, Fengguang Wu <fengguang.wu@xxxxxxxxx> wrote: > FYI, kernel build failed on > > tree: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master > head: 15c03dd4859ab16f9212238f29dd315654aa94f6 > commit: 866f321339988293a5bb3ec6634c2c9d8396bf54 Revert "staging/solo6x10: depend on CONFIG_FONTS" > date: 3 months ago > config: x86_64-randconfig-c5-0930 (attached as .config) > > All error/warnings: > > drivers/built-in.o: In function `mcam_v4l_open': >>> mcam-core.c:(.text+0x3bf73a): undefined reference to `vb2_dma_sg_memops' The referenced commit above is completely unrelated to this failure, as both CONFIG_SOLO6X10=m and CONFIG_VIDEOBUF2_DMA_SG=m, while this is about a missing symbol in builtin code. However, there's something wrong with the VIDEO_CAFE_CCIC dependencies. Untested gmail-white-space-damaged patch below (so your trick of emailing random people to obtain a solution worked ;-) >From 8a53ff3c33cfaa8641c9ba3e16bc5b0a35c74842 Mon Sep 17 00:00:00 2001 From: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Date: Mon, 30 Sep 2013 09:03:20 +0200 Subject: [PATCH] [media] VIDEO_CAFE_CCIC should select VIDEOBUF2_DMA_SG If VIDEO_CAFE_CCIC=y, but VIDEOBUF2_DMA_SG=m: drivers/built-in.o: In function `mcam_v4l_open': >> mcam-core.c:(.text+0x3bf73a): undefined reference to `vb2_dma_sg_memops' Reported-by: Fengguang Wu <fengguang.wu@xxxxxxxxx> Signed-off-by: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> --- drivers/media/platform/marvell-ccic/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/platform/marvell-ccic/Kconfig b/drivers/media/platform/marvell-ccic/Kconfig index bf739e3..ec4c771 100644 --- a/drivers/media/platform/marvell-ccic/Kconfig +++ b/drivers/media/platform/marvell-ccic/Kconfig @@ -4,6 +4,7 @@ config VIDEO_CAFE_CCIC select VIDEO_OV7670 select VIDEOBUF2_VMALLOC select VIDEOBUF2_DMA_CONTIG + select VIDEOBUF2_DMA_SG ---help--- This is a video4linux2 driver for the Marvell 88ALP01 integrated CMOS camera controller. This is the controller found on first- -- 1.7.9.5 Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html