An error occurred fetching the project authors.
  1. 26 Jul, 2008 2 commits
  2. 20 Jul, 2008 3 commits
  3. 24 Apr, 2008 1 commit
  4. 03 Feb, 2008 1 commit
  5. 22 Oct, 2007 1 commit
  6. 10 Oct, 2007 2 commits
    • Trent Piepho's avatar
      V4L/DVB (5885): zr36067: Fix problems with module parameters · 60e3cac4
      Trent Piepho authored
      Add permissions to all the module parameters so they can be queried and set
      (when possible) via sysfs.
      
      Add description for the vidmem parameter.
      
      Change the video_nr parameter to an array, so that the video number can be
      specified when a user has more than one card.  The driver would try to give
      all cards the same number otherwise, which will fail for all cards after the
      first.
      
      The default_input option would only allow values of 0 or 1, contrary to the
      description.  Allow values up to the number of inputs defined for the card.
      
      Add description of lock_norm's different behavior for 1 and >1.
      Signed-off-by: default avatarTrent Piepho <xyzzy@speakeasy.org>
      Acked-by: default avatarRonald S. Bultje <rbultje@ronald.bitfreak.net>
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
      60e3cac4
    • Jean Delvare's avatar
      V4L/DVB (5884): zr36067: clean up debug function · 18b548ca
      Jean Delvare authored
      Debugging cleanups to the zr36067 driver:
      
      * Use module_param_named() to declare the debug parameter, so we can
        use a single global variable to handle the debug level. This makes
        the driver a bit smaller (by 648 bytes on x86_64), thanks to one
        less level of indirection on every use.
      
      * Change the debug parameter sysfs permissions, so that the debug
        level can be adjusted at runtime, as is done in many other
        media/video drivers.
      
      * The debug level is between 0 and 5, not 0 and 4.
      
      * Move the zr_debug export and dprintk macro definition to a header
        file so that we don't have to define them in each source file.
      
      * Simplify a duplicate test on zr_debug.
      
      Note that zr_debug was subsequently renamed to debug_zr36067 to avoid
      possible conflicts with other Zoran device drivers, on a suggestion
      by Trent Piepho.
      Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
      Signed-off-by: default avatarTrent Piepho <xyzzy@speakeasy.org>
      Acked-by: default avatarRonald S. Bultje <rbultje@ronald.bitfreak.net>
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
      18b548ca
  7. 13 Feb, 2007 1 commit
    • Jean Delvare's avatar
      i2c: Declare more i2c_adapter parent devices · 12a917f6
      Jean Delvare authored
      Declare the parent device of i2c_adapter devices each time we can
      easily do so. It makes the i2c_adapter appear at the right place in
      the device tree, rather than as a platform device.
      Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
      Cc: David Brownell <dbrownell@users.sourceforge.net>
      Cc: Len Brown <len.brown@intel.com>
      Cc: Jordan Crouse <jordan.crouse@amd.com>
      Cc: Jody McIntyre <scjody@modernduck.com>
      Cc: Stefan Richter <stefanr@s5r6.in-berlin.de>
      Cc: v4l-dvb-maintainer@linuxtv.org
      Cc: Petr Vandrovec <vandrove@vc.cvut.cz>
      12a917f6
  8. 10 Dec, 2006 1 commit
  9. 04 Oct, 2006 1 commit
  10. 26 Sep, 2006 2 commits
  11. 02 Jul, 2006 1 commit
  12. 30 Jun, 2006 1 commit
  13. 25 Jun, 2006 2 commits
    • Mauro Carvalho Chehab's avatar
      V4L/DVB (4068): Removed all references to kernel stuff from videodev.h and videodev2.h · 5e87efa3
      Mauro Carvalho Chehab authored
      The videodev.h and videodev2.h describe the public API for V4L and V4L2.
      It shouldn't have there any kernel-specific stuff. Those were moved to
      v4l2-dev.h.
      This patch removes some uneeded headers and include v4l2-common.h on all
      V4L driver. This header includes device implementation of V4L2 API provided
      on v4l2-dev.h as well as V4L2 internal ioctls that provides connections
      between master driver and its i2c devices.
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
      5e87efa3
    • Martin Samuelsson's avatar
      V4L/DVB (3916): AverMedia 6 Eyes AVS6EYES support · fbe60daa
      Martin Samuelsson authored
      Add support for the AverMedia 6 Eyes MJPEG card.
      - Updated drivers/media/video/Kconfig with AVS6EYES
        options.
      - Added CONFIG_VIDEO_ZORAN_AVS6EYES to
        drivers/media/video/Makefile.
      - Added I2C_DRIVERID_BT866 and I2C_DRIVERID_KS0127 to
        include/linux/i2c-id.h
      - Added drivers/media/video/ks0127.c, imported and modified from
        the Marvel project.
      - Added drivers/media/video/ks0127.h, imported and modified from
        the Marvel project.
      - Added drivers/media/video/bt866.c, ported from a 2.4 version
        by Christer Weinigel.
      - Added AVS6EYES to drivers/media/video/zoran_card.c
      - Added input_mux to all cards in drivers/media/video/zoran_card.c
      - Added input mux module parameter to drivers/media/video/zoran_card.c
      - Added AVS6EYES to card_type in drivers/media/video/zoran.h
      - Added input_mux to card_info in drivers/media/video/zoran.h
      - Upped BUZ_MAX_INPUT in drivers/media/video/zoran.h from 8 to 16,
        as the AVS6EYES has 10.
      - Updated Documentation/video4linux/Zoran with information about AVS6EYES.
      Signed-off-by: default avatarMartin Samuelsson <sam@home.se>
      Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
      fbe60daa
  14. 25 Mar, 2006 1 commit
  15. 23 Mar, 2006 2 commits
  16. 15 Jan, 2006 1 commit
  17. 11 Jan, 2006 1 commit
  18. 07 Nov, 2005 1 commit
  19. 05 Sep, 2005 1 commit
  20. 16 Apr, 2005 1 commit
    • Linus Torvalds's avatar
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds authored
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4