1. 17 11月, 2016 1 次提交
  2. 10 10月, 2016 1 次提交
  3. 01 2月, 2016 1 次提交
    • A
      [media] v4l: remove MEDIA_TUNER dependency for VIDEO_TUNER · 7c8fe516
      Arnd Bergmann 提交于
      em28xx selects VIDEO_TUNER, which has a dependency on MEDIA_TUNER,
      so we get a Kconfig warning if that is disabled:
      
      warning: (VIDEO_PVRUSB2 && VIDEO_USBVISION && VIDEO_GO7007 && VIDEO_AU0828_V4L2 && VIDEO_CX231XX && VIDEO_TM6000 && VIDEO_EM28XX && VIDEO_IVTV && VIDEO_MXB && VIDEO_CX18 && VIDEO_CX23885 && VIDEO_CX88 && VIDEO_BT848 && VIDEO_SAA7134 && VIDEO_SAA7164) selects VIDEO_TUNER which has unmet direct dependencies (MEDIA_SUPPORT && MEDIA_TUNER)
      
      VIDEO_TUNER does not actually depend on MEDIA_TUNER, and the
      dependency does nothing except cause the above warning, so let's
      remove it.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@osg.samsung.com>
      7c8fe516
  4. 23 10月, 2015 1 次提交
    • J
      [media] v4l2-flash-led-class: Add missing VIDEO_V4L2 Kconfig dependency · 17f38822
      Jacek Anaszewski 提交于
      Fixes the following randconfig problem:
      
      drivers/built-in.o: In function `v4l2_flash_release':
      (.text+0x12204f): undefined reference to `v4l2_async_unregister_subdev'
      drivers/built-in.o: In function `v4l2_flash_release':
      (.text+0x122057): undefined reference to `v4l2_ctrl_handler_free'
      drivers/built-in.o: In function `v4l2_flash_close':
      v4l2-flash-led-class.c:(.text+0x12208f): undefined reference to `v4l2_fh_is_singular'
      v4l2-flash-led-class.c:(.text+0x1220c8): undefined reference to `__v4l2_ctrl_s_ctrl'
      drivers/built-in.o: In function `v4l2_flash_open':
      v4l2-flash-led-class.c:(.text+0x12227f): undefined reference to `v4l2_fh_is_singular'
      drivers/built-in.o: In function `v4l2_flash_init_controls':
      v4l2-flash-led-class.c:(.text+0x12274e): undefined reference to `v4l2_ctrl_handler_init_class'
      v4l2-flash-led-class.c:(.text+0x122797): undefined reference to `v4l2_ctrl_new_std_menu'
      v4l2-flash-led-class.c:(.text+0x1227e0): undefined reference to `v4l2_ctrl_new_std'
      v4l2-flash-led-class.c:(.text+0x122826): undefined reference to `v4l2_ctrl_handler_setup'
      v4l2-flash-led-class.c:(.text+0x122839): undefined reference to `v4l2_ctrl_handler_free'
      drivers/built-in.o: In function `v4l2_flash_init':
      (.text+0x1228e2): undefined reference to `v4l2_subdev_init'
      drivers/built-in.o: In function `v4l2_flash_init':
      (.text+0x12293b): undefined reference to `v4l2_async_register_subdev'
      drivers/built-in.o: In function `v4l2_flash_init':
      (.text+0x122949): undefined reference to `v4l2_ctrl_handler_free'
      drivers/built-in.o:(.rodata+0x20ef8): undefined reference to `v4l2_subdev_queryctrl'
      drivers/built-in.o:(.rodata+0x20f10): undefined reference to `v4l2_subdev_querymenu'
      Signed-off-by: NJacek Anaszewski <j.anaszewski@samsung.com>
      Reported-by: Nkbuild test robot <fengguang.wu@intel.com>
      Cc: Sakari Ailus <sakari.ailus@iki.fi>
      Cc: Hans Verkuil <hans.verkuil@cisco.com>
      17f38822
  5. 17 8月, 2015 1 次提交
  6. 23 6月, 2015 1 次提交
  7. 01 5月, 2015 1 次提交
  8. 26 9月, 2014 1 次提交
    • M
      v4l2-pci-skeleton: Only build if PCI is available · 19f94f97
      Mark Brown 提交于
      Currently arm64 does not support PCI but it does support v4l2. Since the
      PCI skeleton driver is built unconditionally as a module with no dependency
      on PCI this causes build failures for arm64 allmodconfig. Fix this by
      defining a symbol VIDEO_PCI_SKELETON for the skeleton and conditionalising
      the build on that.
      Signed-off-by: NMark Brown <broonie@linaro.org>
      Signed-off-by: Randy Dunlap <rdunlap@infradead.org> [added VIDEO dependencies]
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      19f94f97
  9. 17 4月, 2014 1 次提交
  10. 20 12月, 2013 1 次提交
    • H
      [media] omap24xx/tcm825x: move to staging for future removal · a03636cb
      Hans Verkuil 提交于
      The omap24xx driver and the tcm825x sensor driver are the only two
      remaining drivers to still use the old deprecated v4l2-int-device API.
      
      Nobody maintains these drivers anymore. But unfortunately the v4l2-int-device
      API is used by out-of-tree drivers (MXC platform). This is a very bad situation
      since as long as this deprecated API stays in the kernel there is no reason for
      those out-of-tree drivers to convert.
      
      This patch moves v4l2-int-device and the two drivers that depend on it to
      staging in preparation for their removal.
      
      If someone would be interested in getting these drivers to work, then start with
      this since it's not very far from the state where they used to work:
      
      <URL:http://vihersipuli.retiisi.org.uk/cgi-bin/gitweb.cgi?p=~sailus/linux-omap/.git;a=summary>
      
      The branch is n800-cam. Porting to up-to-date APIs can then be done. David
      might have done some work in that area, so check with him first.
      Signed-off-by: NHans Verkuil <hans.verkuil@cisco.com>
      Cc: Sakari Ailus <sakari.ailus@iki.fi>
      Cc: David Cohen <dacohen@gmail.com>
      Signed-off-by: NMauro Carvalho Chehab <m.chehab@samsung.com>
      a03636cb
  11. 19 3月, 2013 1 次提交
  12. 06 1月, 2013 1 次提交
  13. 26 11月, 2012 3 次提交
  14. 21 8月, 2012 1 次提交
  15. 16 8月, 2012 1 次提交
  16. 14 8月, 2012 1 次提交