1. 25 Jan, 2008 2 commits
  2. 22 Oct, 2007 1 commit
  3. 19 Oct, 2007 1 commit
  4. 09 Oct, 2007 2 commits
  5. 20 Jul, 2007 1 commit
  6. 08 May, 2007 1 commit
  7. 27 Apr, 2007 4 commits
  8. 01 Mar, 2007 4 commits
  9. 21 Feb, 2007 4 commits
  10. 14 Feb, 2007 1 commit
    • Tim Schmielau's avatar
      [PATCH] remove many unneeded #includes of sched.h · cd354f1a
      Tim Schmielau authored
      
      After Al Viro (finally) succeeded in removing the sched.h #include in module.h
      recently, it makes sense again to remove other superfluous sched.h includes.
      There are quite a lot of files which include it but don't actually need
      anything defined in there.  Presumably these includes were once needed for
      macros that used to live in sched.h, but moved to other header files in the
      course of cleaning it up.
      
      To ease the pain, this time I did not fiddle with any header files and only
      removed #includes from .c-files, which tend to cause less trouble.
      
      Compile tested against 2.6.20-rc2 and 2.6.20-rc2-mm2 (with offsets) on alpha,
      arm, i386, ia64, mips, powerpc, and x86_64 with allnoconfig, defconfig,
      allmodconfig, and allyesconfig as well as a few randconfigs on x86_64 and all
      configs in arch/arm/configs on arm.  I also checked that no new warnings were
      introduced by the patch (actually, some warnings are removed that were emitted
      by unnecessarily included header files).
      Signed-off-by: default avatarTim Schmielau <tim@physik3.uni-rostock.de>
      Acked-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      cd354f1a
  11. 15 Jan, 2007 1 commit
  12. 10 Dec, 2006 2 commits
  13. 26 Sep, 2006 1 commit
  14. 08 Aug, 2006 1 commit
  15. 29 Jul, 2006 1 commit
  16. 30 Jun, 2006 1 commit
  17. 26 Jun, 2006 2 commits
  18. 25 Jun, 2006 4 commits
  19. 02 Apr, 2006 1 commit
  20. 25 Mar, 2006 1 commit
  21. 24 Mar, 2006 4 commits
    • Hans Verkuil's avatar
      V4L/DVB (3582): Implement correct msp3400 input/output routing · 2474ed44
      Hans Verkuil authored
      
      - implement VIDIOC_INT_S_AUDIO_ROUTING for msp3400 and tvaudio
      - use the new command in bttv, pvrusb2 and em28xx.
      - remove the now obsolete MSP_SET_MATRIX from msp3400 (yeah!)
      - remove the obsolete VIDIOC_S_AUDIO from msp3400.
      Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
      2474ed44
    • Hans Verkuil's avatar
      V4L/DVB (3577): Cleanup audio input handling · 8bf2f8e7
      Hans Verkuil authored
      
      Cleanup audio input handling in bttv and tvaudio:
      - inputs were specified that were never used
      - mute was handled as a special input which led to confusing code
      - confusing naming made it difficult to see if the setting was for
        i2c or gpio.
      The old audiochip.h input names moved to tvaudio.h. Currently this
      is used both by tvaudio and msp3400 until the msp3400 implements the
      new msp3400-specific inputs.
      Detect in bttv the tvaudio and msp3400 i2c clients and use these
      client pointers to set the inputs directly instead of broadcasting the
      command.
      Removed AUDC_SET_INPUT. Now replaced by VIDIOC_S_AUDIO. This will be
      replaced again later by the new ROUTING commands.
      Removed VIDIOC_G_AUDIO implementations in i2c drivers: this command is
      a user level command and not to be used internally. It wasn't called at
      all anyway.
      Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
      8bf2f8e7
    • Andrew Morton's avatar
      V4L/DVB (3571): Printk warning fixes · 5245953e
      Andrew Morton authored
      
      On ppc64, u64 is `unsigned long'
      drivers/media/video/v4l2-common.c: In function `v4l_printk_ioctl_arg':
      drivers/media/video/v4l2-common.c:486: warning: cast from pointer to integer of different size
      drivers/media/video/v4l2-common.c:580: warning: long long int format, v4l2_std_id arg (arg 8)
      drivers/media/video/v4l2-common.c:625: warning: long long int format, v4l2_std_id arg (arg 8)
      drivers/media/video/v4l2-common.c:693: warning: long long int format, v4l2_std_id arg (arg 4)
      drivers/media/video/v4l2-common.c:910: warning: long long unsigned int format, long unsigned int a$
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
      5245953e
    • Mauro Carvalho Chehab's avatar
      V4L/DVB (3516): Make video_buf more generic · c7b0ac05
      Mauro Carvalho Chehab authored
      
      Video_buf were concerned to allow PCI devices to be used as
      video capture devices. This patch extends video_buf features
      by virtualizing pci-dependent functions and allowing other
      type of devices to use it.
      It is still DMA centric, although it may be used also by
      devices that emulates scatter/gather behavior or a DMA device
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
      c7b0ac05