linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/25] V4L/DVB updates
@ 2006-01-16  9:11 mchehab
  2006-01-16  9:11 ` [PATCH 04/25] Include missing MODULE_* macros mchehab
                   ` (24 more replies)
  0 siblings, 25 replies; 29+ messages in thread
From: mchehab @ 2006-01-16  9:11 UTC (permalink / raw)
  To: linux-kernel, torvalds; +Cc: linux-dvb-maintainer, video4linux-list, akpm

        This patch series is also available under v4l-dvb.git tree at:
                kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git

	Linus, please push these from master branch.

	It contains the following stuff:

   - Remove old MODULE_PARM in media/video/
   - bttv semaphore to mutex conversion
   - removed uneeded init on structs like static int foo=0
   - Include missing MODULE_* macros
   - Build cx88-alsa when CONFIG_VIDEO_CX88_ALSA is selected.
   - Updated MODULE_AUTHOR
   - Redesign tuners struct for maximum flexibility
   - Add support for Samsung tuner TCPN 2121P30A
   - disable all dvb tuner param_types until we need them
   - i2c ids for upd64031a saa717x upd64083 wm8739
   - Turn frame locked sound on, basic support for FM radio with TDA8275(a)
   - git dvb callbacks fix
   - cx88 Kconfig fixes for cx88-alsa
   - make some code static
   - Fix for lack of analog output on some cx88 boards
   - Semaphore to mutex conversion on drivers/media
   - Fix compilation with Alpha
   - Move tda988x options into tuner_params struct.
   - Separate tv & radio freqs, fix cb/freq transmit order for tuners that need this.
   - Return -EINVAL for unknown commands in msp3400 module.
   - fix some sound quality & distortion problems.
   - clean up some comments
   - tuner_params->tda988x is currently unused, so disable
   - Samsung TBMV30111IN has 6 entries
   - Added remote control support for pinnacle pctv

Cheers,
Mauro

---

 Documentation/video4linux/CARDLIST.tuner      |    1 
 drivers/media/dvb/bt8xx/bt878.c               |    2 
 drivers/media/dvb/dvb-core/dvbdev.c           |   22 
 drivers/media/dvb/dvb-usb/cxusb.c             |    2 
 drivers/media/dvb/frontends/dvb-pll.c         |    2 
 drivers/media/dvb/ttpci/av7110.c              |    4 
 drivers/media/dvb/ttpci/av7110_hw.c           |   40 
 drivers/media/dvb/ttpci/av7110_hw.h           |   12 
 drivers/media/video/Makefile                  |    3 
 drivers/media/video/arv.c                     |    6 
 drivers/media/video/bt832.c                   |    2 
 drivers/media/video/btcx-risc.c               |    2 
 drivers/media/video/bttv-cards.c              |    6 
 drivers/media/video/bttv-driver.c             |   87 -
 drivers/media/video/bttv-i2c.c                |    6 
 drivers/media/video/bttvp.h                   |    5 
 drivers/media/video/cx25840/cx25840-core.c    |    4 
 drivers/media/video/cx88/Kconfig              |    3 
 drivers/media/video/cx88/Makefile             |    1 
 drivers/media/video/cx88/cx88-alsa.c          |    9 
 drivers/media/video/cx88/cx88-core.c          |   15 
 drivers/media/video/cx88/cx88-tvaudio.c       |    8 
 drivers/media/video/cx88/cx88-vp3054-i2c.c    |    4 
 drivers/media/video/em28xx/em28xx-input.c     |   77 
 drivers/media/video/em28xx/em28xx-video.c     |    7 
 drivers/media/video/msp3400-driver.c          |   14 
 drivers/media/video/msp3400.h                 |    8 
 drivers/media/video/mt20xx.c                  |   12 
 drivers/media/video/planb.c                   |    4 
 drivers/media/video/saa6588.c                 |   10 
 drivers/media/video/saa711x.c                 |    2 
 drivers/media/video/saa7134/saa7134-cards.c   |    6 
 drivers/media/video/saa7134/saa7134-core.c    |   21 
 drivers/media/video/saa7134/saa7134-tvaudio.c |   11 
 drivers/media/video/tda8290.c                 |    4 
 drivers/media/video/tea5767.c                 |   18 
 drivers/media/video/tuner-core.c              |   85 -
 drivers/media/video/tuner-simple.c            |  794 ----------
 drivers/media/video/tuner-types.c             | 1406 ++++++++++++++++++
 drivers/media/video/tveeprom.c                |    2 
 drivers/media/video/tvp5150.c                 |    2 
 drivers/media/video/v4l2-common.c             |    1 
 drivers/media/video/videodev.c                |   25 
 include/linux/i2c-id.h                        |    4 
 include/media/tuner-types.h                   |   73 
 include/media/tuner.h                         |   10 
 include/media/v4l2-common.h                   |    7 
 47 files changed, 1870 insertions(+), 979 deletions(-)


^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2006-01-17 18:22 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-16  9:11 [PATCH 00/25] V4L/DVB updates mchehab
2006-01-16  9:11 ` [PATCH 04/25] Include missing MODULE_* macros mchehab
2006-01-16  9:11 ` [PATCH 03/25] removed uneeded init on structs like static int foo=0 mchehab
2006-01-16  9:11 ` [PATCH 01/25] Remove old MODULE_PARM in media/video/ mchehab
2006-01-16  9:11 ` [PATCH 02/25] bttv semaphore to mutex conversion mchehab
2006-01-16  9:11 ` [PATCH 07/25] Redesign tuners struct for maximum flexibility mchehab
2006-01-16  9:11 ` [PATCH 05/25] Build cx88-alsa when CONFIG_VIDEO_CX88_ALSA is selected mchehab
2006-01-16  9:11 ` [PATCH 06/25] Updated MODULE_AUTHOR mchehab
2006-01-16  9:11 ` [PATCH 09/25] disable all dvb tuner param_types until we need them mchehab
2006-01-16  9:11 ` [PATCH 10/25] i2c ids for upd64031a saa717x upd64083 wm8739 mchehab
2006-01-16  9:11 ` [PATCH 11/25] Turn frame locked sound on, basic support for FM radio with TDA8275(a) mchehab
2006-01-16  9:11 ` [PATCH 08/25] Add support for Samsung tuner TCPN 2121P30A mchehab
2006-01-16  9:11 ` [PATCH 14/25] make some code static mchehab
2006-01-16  9:11 ` [PATCH 12/25] git dvb callbacks fix mchehab
2006-01-16  9:11 ` [PATCH 13/25] cx88 Kconfig fixes for cx88-alsa mchehab
2006-01-16 21:10   ` Adrian Bunk
2006-01-16  9:11 ` [PATCH 16/25] Semaphore to mutex conversion on drivers/media mchehab
2006-01-16  9:11 ` [PATCH 15/25] Fix for lack of analog output on some cx88 boards mchehab
2006-01-16  9:11 ` [PATCH 17/25] Fix compilation with Alpha mchehab
2006-01-16  9:11 ` [PATCH 18/25] Move tda988x options into tuner_params struct mchehab
2006-01-16  9:11 ` [PATCH 20/25] Return -EINVAL for unknown commands in msp3400 module mchehab
2006-01-16  9:11 ` [PATCH 19/25] Separate tv & radio freqs, fix cb/freq transmit order for tuners that need this mchehab
2006-01-16  9:11 ` [PATCH 21/25] fix some sound quality & distortion problems mchehab
2006-01-16  9:11 ` [PATCH 22/25] clean up some comments mchehab
2006-01-16  9:11 ` [PATCH 24/25] Samsung TBMV30111IN has 6 entries mchehab
2006-01-16  9:11 ` [PATCH 23/25] tuner_params->tda988x is currently unused, so disable mchehab
2006-01-16  9:11 ` [PATCH 25/25] Added remote control support for pinnacle pctv mchehab
2006-01-17 20:58   ` victorhom
2006-01-17 18:22     ` Markus Rechberger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).