1. 27 5月, 2013 1 次提交
  2. 21 5月, 2013 1 次提交
  3. 15 4月, 2013 8 次提交
  4. 24 3月, 2013 1 次提交
  5. 23 3月, 2013 1 次提交
  6. 26 9月, 2012 1 次提交
  7. 16 8月, 2012 1 次提交
  8. 15 5月, 2012 1 次提交
    • H
      [media] v4l: fix compiler warnings · e92ba283
      Hans Verkuil 提交于
      media_build/v4l/au0828-video.c: In function 'au0828_irq_callback':
      media_build/v4l/au0828-video.c:123:6: warning: variable 'rc' set but not used [-Wunused-but-set-variable]
      media_build/v4l/cx23888-ir.c: In function 'pulse_clocks_to_clock_divider':
      media_build/v4l/cx23888-ir.c:334:6: warning: variable 'rem' set but not used [-Wunused-but-set-variable]
      media_build/v4l/cx25840-ir.c: In function 'pulse_clocks_to_clock_divider':
      media_build/v4l/cx25840-ir.c:319:6: warning: variable 'rem' set but not used [-Wunused-but-set-variable]
      media_build/v4l/cx25840-ir.c: In function 'cx25840_ir_tx_write':
      media_build/v4l/cx25840-ir.c:863:21: warning: variable 'c' set but not used [-Wunused-but-set-variable]
      media_build/v4l/em28xx-audio.c: In function 'snd_em28xx_hw_capture_params':
      media_build/v4l/em28xx-audio.c:346:31: warning: variable 'format' set but not used [-Wunused-but-set-variable]
      media_build/v4l/em28xx-audio.c:346:25: warning: variable 'rate' set but not used [-Wunused-but-set-variable]
      media_build/v4l/em28xx-audio.c:346:15: warning: variable 'channels' set but not used [-Wunused-but-set-variable]
      media_build/v4l/hdpvr-control.c: In function 'get_input_lines_info':
      media_build/v4l/hdpvr-control.c:98:6: warning: variable 'ret' set but not used [-Wunused-but-set-variable]
      media_build/v4l/hdpvr-video.c: In function 'hdpvr_try_ctrl':
      media_build/v4l/hdpvr-video.c:955:6: warning: variable 'ret' set but not used [-Wunused-but-set-variable]
      media_build/v4l/saa7134-video.c: In function 'saa7134_s_tuner':
      media_build/v4l/saa7134-video.c:2030:6: warning: variable 'rx' set but not used [-Wunused-but-set-variable]
      media_build/v4l/sn9c102_core.c: In function 'sn9c102_stream_interrupt':
      media_build/v4l/sn9c102_core.c:998:7: warning: variable 'timeout' set but not used [-Wunused-but-set-variable]
      Signed-off-by: NHans Verkuil <hans.verkuil@cisco.com>
      Acked-by: NJanne Grunau <j@jannau.net>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      e92ba283
  9. 15 2月, 2012 3 次提交
  10. 28 7月, 2011 1 次提交
    • M
      [media] Stop using linux/version.h on most video drivers · 1990d50b
      Mauro Carvalho Chehab 提交于
      All the modified drivers didn't have any version increment since
      Jan, 1 2011. Several of them didn't have any version increment
      for a long time, even having new features and important bug fixes
      happening.
      
      As we're now filling the QUERYCAP version with the current Kernel
      Release, we don't need to maintain a per-driver version control
      anymore. So, let's just use the default.
      
      In order to preserve the Kernel module version history, a
      KERNEL_VERSION() macro were added to all modified drivers, and
      the extraver number were incremented.
      
      I opted to preserve the per-driver version control to a few
      pwc, pvrusb2, s2255, s5p-fimc and sh_vou.
      
      A few drivers are still using the legacy way to handle ioctl's.
      So, we can't do such change on them, otherwise, they'll break.
      Those are: uvc, et61x251 and sn9c102.
      
      The rationale is that the per-driver version control seems to be
      actively maintained on those.
      
      Yet, I think that the better for them would be to just use the
      default version numbering, instead of doing that by themselves.
      
      While here, removed a few uneeded include linux/version.h
      Acked-by: NHans Verkuil <hans.verkuil@cisco.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      1990d50b
  11. 19 1月, 2011 1 次提交
    • J
      [media] hdpvr: enable IR part · 324b04ba
      Jarod Wilson 提交于
      A number of things going on here, but the end result is that the IR part
      on the hdpvr gets enabled, and can be used with ir-kbd-i2c and/or
      lirc_zilog.
      
      First up, there are some conditional build fixes that come into play
      whether i2c is built-in or modular. Second, we're swapping out
      i2c_new_probed_device() for i2c_new_device(), as in my testing, probing
      always fails, but we *know* that all hdpvr devices have a z8 chip at
      0x70 and 0x71. Third, we're poking at an i2c address directly without a
      client, and writing some magic bits to actually turn on this IR part
      (this could use some improvement in the future). Fourth, some of the
      i2c_adapter storage has been reworked, as the existing implementation
      used to lead to an oops following i2c changes c. 2.6.31.
      
      Earlier editions of this patch have been floating around the 'net for a
      while, including being patched into Fedora kernels, and they *do* work.
      This specific version isn't yet tested, beyond loading ir-kbd-i2c and
      confirming that it does bind to the RX address of the hdpvr.
      
      [mchehab@redhat.com: I2C_CLASS_TV_ANALOG is not defined. Fix compilation bug]
      Signed-off-by: NJarod Wilson <jarod@redhat.com>
      Acked-by: NAndy Walls <awalls@md.metrocast.net>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      324b04ba
  12. 21 10月, 2010 3 次提交
  13. 03 8月, 2010 1 次提交
  14. 01 6月, 2010 1 次提交
  15. 21 5月, 2010 1 次提交
  16. 19 5月, 2010 1 次提交
    • H
      V4L/DVB: hdpvr: fix disconnect sequence · f2b305cd
      Hans Verkuil 提交于
      Disconnecting the HDPVR caused a kernel oops if lockdep was enabled.
      In addition, if an app still had video0 open and attempted to call ioctl
      when the device was already disconnected the system would crash.
      
      Move the freeing and cleanup code to the release function: that is the
      right place for it since you know when you get there that nobody is
      using the device.
      
      Also removed usb_set_intfdata: v4l2_device_register sets this already
      to v4l2_dev.
      Signed-off-by: NHans Verkuil <hverkuil@xs4all.nl>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      f2b305cd
  17. 27 2月, 2010 2 次提交
  18. 16 12月, 2009 1 次提交
  19. 06 12月, 2009 1 次提交
  20. 12 9月, 2009 1 次提交
  21. 14 8月, 2009 1 次提交
  22. 13 6月, 2009 1 次提交
  23. 30 3月, 2009 6 次提交