Message ID | 1404637121-1253-1-git-send-email-geert@linux-m68k.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
CC kbuild test robot <fengguang.wu@intel.com> On Sun, Jul 6, 2014 at 10:58 AM, Geert Uytterhoeven <geert@linux-m68k.org> wrote: > If CONFIG_SOLO6X10=y, but CONFIG_BITREVERSE=m: > > drivers/built-in.o: In function `solo_osd_print': > (.text+0x1c7a1f): undefined reference to `byte_rev_table' > make: *** [vmlinux] Error 1 > > Reported-by: kbuild test robot <fengguang.wu@intel.com> > Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> > --- > drivers/staging/media/solo6x10/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/staging/media/solo6x10/Kconfig b/drivers/staging/media/solo6x10/Kconfig > index 6a1906fa1117..1ce2819efcb4 100644 > --- a/drivers/staging/media/solo6x10/Kconfig > +++ b/drivers/staging/media/solo6x10/Kconfig > @@ -1,6 +1,7 @@ > config SOLO6X10 > tristate "Bluecherry / Softlogic 6x10 capture cards (MPEG-4/H.264)" > depends on PCI && VIDEO_DEV && SND && I2C > + select BITREVERSE > select FONT_SUPPORT > select FONT_8x16 > select VIDEOBUF2_DMA_SG Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org 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@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Sun, Jul 6, 2014 at 10:59 AM, Geert Uytterhoeven <geert@linux-m68k.org> wrote: > CC kbuild test robot <fengguang.wu@intel.com> Doh, this time for real... > On Sun, Jul 6, 2014 at 10:58 AM, Geert Uytterhoeven > <geert@linux-m68k.org> wrote: >> If CONFIG_SOLO6X10=y, but CONFIG_BITREVERSE=m: >> >> drivers/built-in.o: In function `solo_osd_print': >> (.text+0x1c7a1f): undefined reference to `byte_rev_table' >> make: *** [vmlinux] Error 1 >> >> Reported-by: kbuild test robot <fengguang.wu@intel.com> >> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> >> --- >> drivers/staging/media/solo6x10/Kconfig | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/drivers/staging/media/solo6x10/Kconfig b/drivers/staging/media/solo6x10/Kconfig >> index 6a1906fa1117..1ce2819efcb4 100644 >> --- a/drivers/staging/media/solo6x10/Kconfig >> +++ b/drivers/staging/media/solo6x10/Kconfig >> @@ -1,6 +1,7 @@ >> config SOLO6X10 >> tristate "Bluecherry / Softlogic 6x10 capture cards (MPEG-4/H.264)" >> depends on PCI && VIDEO_DEV && SND && I2C >> + select BITREVERSE >> select FONT_SUPPORT >> select FONT_8x16 >> select VIDEOBUF2_DMA_SG Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org 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@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Sun, 6 Jul 2014 10:58:41 +0200 Geert Uytterhoeven <geert@linux-m68k.org> wrote: > If CONFIG_SOLO6X10=y, but CONFIG_BITREVERSE=m: > > drivers/built-in.o: In function `solo_osd_print': > (.text+0x1c7a1f): undefined reference to `byte_rev_table' > make: *** [vmlinux] Error 1 > > Reported-by: kbuild test robot <fengguang.wu@intel.com> > Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> > --- > drivers/staging/media/solo6x10/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/staging/media/solo6x10/Kconfig > b/drivers/staging/media/solo6x10/Kconfig index > 6a1906fa1117..1ce2819efcb4 100644 --- > a/drivers/staging/media/solo6x10/Kconfig +++ > b/drivers/staging/media/solo6x10/Kconfig @@ -1,6 +1,7 @@ > config SOLO6X10 > tristate "Bluecherry / Softlogic 6x10 capture cards > (MPEG-4/H.264)" depends on PCI && VIDEO_DEV && SND && I2C > + select BITREVERSE > select FONT_SUPPORT > select FONT_8x16 > select VIDEOBUF2_DMA_SG Signed-off-by: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
diff --git a/drivers/staging/media/solo6x10/Kconfig b/drivers/staging/media/solo6x10/Kconfig index 6a1906fa1117..1ce2819efcb4 100644 --- a/drivers/staging/media/solo6x10/Kconfig +++ b/drivers/staging/media/solo6x10/Kconfig @@ -1,6 +1,7 @@ config SOLO6X10 tristate "Bluecherry / Softlogic 6x10 capture cards (MPEG-4/H.264)" depends on PCI && VIDEO_DEV && SND && I2C + select BITREVERSE select FONT_SUPPORT select FONT_8x16 select VIDEOBUF2_DMA_SG
If CONFIG_SOLO6X10=y, but CONFIG_BITREVERSE=m: drivers/built-in.o: In function `solo_osd_print': (.text+0x1c7a1f): undefined reference to `byte_rev_table' make: *** [vmlinux] Error 1 Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> --- drivers/staging/media/solo6x10/Kconfig | 1 + 1 file changed, 1 insertion(+)