diff options
-rw-r--r-- | Makefile | 13 | ||||
-rw-r--r-- | README.HG | 55 | ||||
-rw-r--r-- | v4l/ChangeLog | 12765 | ||||
-rwxr-xr-x | v4l/scripts/prep_commit_msg.pl | 55 | ||||
-rwxr-xr-x | v4l/scripts/prepare-ChangeLog.pl | 31 |
5 files changed, 69 insertions, 12850 deletions
@@ -18,23 +18,22 @@ install: %:: $(MAKE) -C $(BUILD_DIR) $(MAKECMDGOALS) -commit cvscommit hgcommit:: - v4l/scripts/prep_commit_msg.pl v4l/ChangeLog >/tmp/v4l_hg_commit.msg +commit cvscommit hgcommit change changes changelog:: whitespace + cd $(BUILD_DIR); scripts/cardlist; cd .. + v4l/scripts/prep_commit_msg.pl >/tmp/v4l_hg_commit.msg $(EDITOR) /tmp/v4l_hg_commit.msg grep -v ^# /tmp/v4l_hg_commit.msg | hg commit -l - pull update v4l-update:: + @echo "Pulling master repository changes" -hg pull -u $(REPO_PULL) hg checkout push:: + @echo "Pushing changes to master repository" -hg push $(REPO_PUSH) -change changes changelog:: whitespace update - cd $(BUILD_DIR); scripts/cardlist; cd .. - v4l/scripts/prepare-ChangeLog.pl - $(EDITOR) v4l/ChangeLog - whitespace: + @echo "Cleaning bad whitespaces" @v4l/scripts/strip-trailing-whitespaces.sh | patch -p0 @@ -54,15 +54,24 @@ kernel development stated at Linux source code, especially: Documentation/SubmittingDrivers Documentation/CodingStyle - 6) Every commit should update the ChangeLog describing who made the -change, what changed and in what files, by using the command: + 6) All commits should have a consistent message. On v4l-dvb, this is +done by using: - make changes + make commit - 7) The latest changelog line will be automatically used as a -prototype to the commit message at the *LOCAL* repository by using: + This will run some scripts that will check changed files, generating a +ChangeLog like comment (that will be removed from the commit) and prepare the +last Signed-off-by field, as described bellow. - make commit + 7) Files can be added, removed or renamed at hg repository. This should +be done by using: + hg add <files> + hg remove <files> + hg rename <source> <dest> + hg addremove + + *Warning* hg addremove will add/removes all files, including object files. +Be careful! You can remove wrongly added files with hg remove. 8) If the commit went wrong, hg allows you to undo the last commit, by using the command: @@ -76,11 +85,11 @@ hg commit will redo the desired commit. make push - 9) To update from the master repository, it is needed to do: + 10) To update from the master repository, it is needed to do: make pull - 10) For hg to work properly, these vars should be defined + 11) For hg to work properly, these vars should be defined (replacing the names at the left): CHANGE_LOG_NAME="Maintainer Name" @@ -92,9 +101,8 @@ export CHANGE_LOG_NAME CHANGE_LOG_EMAIL_ADDRESS CHANGE_LOG_LOGIN HGUSER It is recommended to have these lines at .bashrc or .profile. - 11) All commit messages shall have a Developers Certificate of -Origin version 1.1 at Changelog and cvs commit log, as postulated at -kernel's source at: + 12) All commit messages shall have a Developers Certificate of Origin +version 1.1 at commit log, as postulated at kernel's source at: Documentation/SubmittingPatches @@ -104,20 +112,9 @@ kernel's source at: Signed-off-by: Fake me <me@snakeoilcompany.com> The email should be a valid one. - The bottom signed-off-by should be the CVS maintainer. - - This is an example of ChangeLog entry: + The bottom signed-off-by should be the commiter. - 2005-06-28 18:35 cvsmaintainer - * filelist.c, filelist.h: - - described changes. - - Signed-off-by: Patch Developer <patchdeveloper@patchdevelopersite.com> - Signed-off-by: Cvs Maintainer <cvsmaintainer@cvsmaintainersite.com> - - Obs.: Timestamp should be in GMT. - - 12) Commit messages are very relevant, since they will be used + 13) Commit messages are very relevant, since they will be used when generating the patches for v4l-dvb.git and to mainstream. The format of commit message shall be: @@ -130,6 +127,8 @@ patch descriptions Signed-off-by: Patch Developer <patchdeveloper@patchdevelopersite.com> Signed-off-by: Cvs Maintainer <cvsmaintainer@cvsmaintainersite.com> + All lines starting with # will be removed by make commit stripts. + Subject should be a brief description of the patch. Please notice that, with hg, there's no need (and not desired) to define a Subject: tag. The first msg line will be used as subject, just like @@ -141,7 +140,7 @@ git. else and he also wants to sign. The committer signed-off-by should be the last one. - 13) If the patch also affects other parts of kernel (like alsa + 14) If the patch also affects other parts of kernel (like alsa or i2c), it is required that, at upstream submitting, the patch also goes to the maintainers of that subsystem. To do this, CVS maintainer shall add one or more cc: fields to the commit message, after the subject: @@ -151,7 +150,7 @@ CC: someotherkerneldeveloper@someplace Please notice that this is manually handled by the -git maintainer, so unnecessary usage should be avoided. - 14) Sometimes, mainstream changes do affect v4l-dvb tree, and + 15) Sometimes, mainstream changes do affect v4l-dvb tree, and requires to apply some kernel patches at the tree. This kind of commit should follow the rules above and should also have a line like: @@ -159,7 +158,7 @@ kernel-sync Patches with such lines will not be submitted upstream. - 15) sometimes it is necessary to introduce some testing code + 16) sometimes it is necessary to introduce some testing code inside a module or remove parts that are not yet finished. Also, compatibility tests may be required to provide backporting. @@ -173,7 +172,7 @@ If this code is meant to go also to kernel, this struct should be used: or #if 1 /* keep */ - 16) Nested #ifs are allowed, but the #elif macro shouldn't be + 17) Nested #ifs are allowed, but the #elif macro shouldn't be used, since the macro preprocessing script used to prepare kernel upstream patches (v4l/scripts/gentree.pl) is not able to handle it. diff --git a/v4l/ChangeLog b/v4l/ChangeLog deleted file mode 100644 index eff06d726..000000000 --- a/v4l/ChangeLog +++ /dev/null @@ -1,12765 +0,0 @@ -2006-01-29 13:42 hverkuil - - * Makefile: - Use the login name with the ssh URL. This allows you to use - make push, even if your local username differs from the repo - username. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-29 13:30 hverkuil - - * README.HG: - - fix typos - - add description of make push and emphasize that make commit - commits to the local repository, not the master. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-29 01:48 mchehab - - * README.HG: - - Some review, thanks to Johannes Stezenbach. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-29 01:07 mchehab - - * Makefile: - - make pull will now do push -u - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-28 17:59 mchehab - - * Makefile: - - Removed commit from make push - - This allows commiting at local tree first - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-28 17:56 mchehab - - * README.HG, README.CVS: - - Updated SCM info - - Removed README.CVS - - README.HG now contains more info about usage with HG. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-28 15:46 mchehab - - * Makefile: - * v4l/Makefile: - * v4l/scripts/prep_commit_msg.pl: - * v4l/scripts/prepare-ChangeLog.pl: - - Several fixes for using with mercurial - cvs commands replaced to hg - created a new script to help commiting - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2005-01-25 13:45 mrechberger - - * v4l_experimental/xc3028/setup.sh - - - added small setup script - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-01-25 13:30 mrechberger - - * v4l_experimental/xc3028/xc3028.c: (xc3028_set_tv_freq): - - - cleanups - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2006-01-25 13:24 mrechberger - - * v4l_experimental/xc3028/Makefile: - * v4l_experimental/xc3028/README: - * v4l_experimental/xc3028/xc3028.c: (xc3028_set_tv_freq): - * v4l_experimental/xc3028/tuner-types.c: - - fixed compilation with current cvs, updated frequency calculation - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - - -2006-01-25 10:08 mrechberger - - * v4l_experimental/xc3028/README: - - - typo in README - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2006-01-25 09:47 mrechberger - - * v4l_experimental/xc3028/xc3028.c: - * v4l_experimental/xc3028/tuner-core.c: - * v4l_experimental/xc3028/tuner-types.c: - * v4l_experimental/xc3028/em28xx-cards.c: - * v4l_experimental/xc3028/em28xx.h: - * v4l_experimental/xc3028/tuner.h: - * v4l_experimental/xc3028/README: - * v4l_experimental/xc3028/convert.c: - - - added support for analog mode Hauppauge HVR 900 USB 2.0 - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - - -2006-01-24 02:38 mkrufky - - * linux/drivers/media/video/cx88/Makefile: - - bug-fix: allow tristate build for cx88-vp3054-i2c - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-23 06:59 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-audio.c: (check_stereo), - (pvr2_msp3400_describe): - - - Fix minor problem in pvrusb2 involving changing audio mode; the - driver wasn't noticing when the mode needed to be updated. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-23 06:54 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-context.c: - (pvr2_context_create), (pvr2_context_enter), (pvr2_context_exit): - * v4l_experimental/pvrusb2/pvrusb2-context.h: - * v4l_experimental/pvrusb2/pvrusb2-hdw-internal.h: - * v4l_experimental/pvrusb2/pvrusb2-hdw.c: (pvr2_hdw_create): - * v4l_experimental/pvrusb2/pvrusb2-i2c-core.c: (pvr2_i2c_core_cmd), - (pvr2_i2c_core_sync), (pvr2_i2c_core_check_stale), - (pvr2_i2c_report), (pvr2_i2c_attach_inform), - (pvr2_i2c_detach_inform), (pvr2_i2c_core_init): - * v4l_experimental/pvrusb2/pvrusb2-io.c: (pvr2_stream_init), - (pvr2_stream_done), (pvr2_stream_setup), - (pvr2_stream_set_callback), (pvr2_stream_set_buffer_count), - (pvr2_stream_flush), (pvr2_stream_kill), (pvr2_buffer_queue), - (pvr2_buffer_idle), (pvr2_buffer_set_buffer): - * v4l_experimental/pvrusb2/pvrusb2-ioread.c: (pvr2_ioread_init), - (pvr2_ioread_setup), (pvr2_ioread_set_enabled), (pvr2_ioread_read): - * v4l_experimental/pvrusb2/pvrusb2-v4l2.c: (pvr2_v4l2_open): - - - Switch to using mutexes in pvrusb2 when compiling for 2.6.16 or - later. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-23 05:37 mkrufky - - * linux/drivers/media/video/tuner-types.c: - - removed duplicated tuner_ranges - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-23 04:25 mkrufky - - * linux/drivers/media/video/tuner-simple.c: (default_set_tv_freq), - (default_set_radio_freq): - * linux/drivers/media/video/tuner-types.c: - * linux/include/media/tuner-types.h: - - move config byte from tuner_params to tuner_range struct. - - dvb tuners must be able to set different config byte for each range. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-23 04:22 mkrufky - - * linux/drivers/media/dvb/frontends/dvb-pll.c: (dvb_pll_configure): - * linux/drivers/media/dvb/frontends/dvb-pll.h: - * linux/drivers/media/video/tuner-simple.c: (default_set_tv_freq): - - rename cb variable names in tuner structures for global consistency - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-23 02:11 mrechberger - - * linux/drivers/media/video/tuner-core.c: (tuner_attach): - - - changed comment, relict from old days - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2006-01-22 20:56 mkrufky - - * linux/drivers/media/dvb/b2c2/flexcop-pci.c: (flexcop_pci_isr): - - Fix printk type warning: - format '%08x' expects type 'unsigned int', - but argument 4 has type 'dma_addr_t' - - Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-22 19:43 mrechberger - - * linux/drivers/media/video/em28xx/em28xx-cards.c: - (em28xx_pre_card_setup), (em28xx_card_setup): - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/media/video/em28xx/em28xx.h: - - - added support for Hauppauge WinTV HVR 900 - only composite works at the moment - tuner development Xceive xc3024 is in progress - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2006-01-22 19:21 mkrufky - - * linux/drivers/media/video/em28xx/em28xx-core.c: - - fixed spelling error, exectuted --> executed. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-22 19:09 hverkuil - - * linux/include/media/v4l2-common.h: - - Add new internal VIDIOC_INT commands for setting the tuner mode, - for putting a chip into standby mode and to set/get the routing - of inputs/outputs of audio or video of a chip. These new commands - will replace older commands that are no longer up to the task. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-22 19:28 mrechberger - - * linux/drivers/media/video/tuner-core.c: (set_type) - - bug-fix missing break; - - Acked-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2006-01-22 18:07 mkrufky - - * linux/drivers/media/dvb/b2c2/flexcop-common.h: - * linux/drivers/media/dvb/b2c2/flexcop-dma.c: - * linux/drivers/media/dvb/b2c2/flexcop-misc.c: - * linux/drivers/media/dvb/b2c2/flexcop-reg.h: - * linux/drivers/media/dvb/dvb-usb/cxusb.c: - * linux/drivers/media/dvb/dvb-usb/dvb-usb-firmware.c: - (dvb_usb_get_hexline): - * linux/drivers/media/dvb/dvb-usb/dvb-usb.h: - * linux/drivers/media/dvb/dvb-usb/vp702x.c: (vp702x_usb_out_op), - (vp702x_usb_inout_cmd): - * linux/drivers/media/dvb/dvb-usb/vp702x.h: - * linux/drivers/media/dvb/ttpci/av7110.h: - * linux/drivers/media/dvb/ttpci/av7110_ir.c: - (av7110_setup_irc_config): - - drivers/media/dvb/: possible cleanups - - make needlessly global code static - - #if 0 the following unused global functions: - - b2c2/flexcop-dma.c: flexcop_dma_control_packet_irq() - - b2c2/flexcop-dma.c: flexcop_dma_config_packet_count() - - Signed-off-by: Adrian Bunk <bunk@stusta.de> - Signed-off-by: Patrick Boettcher <pb@linuxtv.org> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-22 13:04 hverkuil - - * linux/drivers/media/video/cx25840/cx25840-core.c: - (cx25840_command), (cx25840_detect_client): - * linux/drivers/media/video/cx25840/cx25840.h: - * linux/drivers/media/video/msp3400-driver.c: - * linux/drivers/media/video/msp3400-kthreads.c: (msp_set_source), - (msp3400c_set_carrier), (msp3400c_set_mode), - (msp3400c_set_audmode), (msp3400c_detect_stereo), (watch_stereo), - (msp3400c_thread), (msp3410d_thread), (msp34xxg_set_source), - (msp34xxg_thread), (msp34xxg_detect_stereo), - (msp34xxg_set_audmode), (msp_set_audmode), (msp_detect_stereo): - * linux/drivers/media/video/msp3400.h: - * linux/drivers/media/video/tuner-core.c: (tuner_status), - (tuner_command): - * linux/drivers/media/video/tvaudio.c: (chip_attach), - (chip_command): - - - audmode and rxsubchans fixes in msp3400, tuner, tvaudio and - cx25840. - - msp3400 cleanups - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-22 03:51 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-i2c-chips-v4l2.c: - (pvr2_i2c_probe): - - - Eliminate horrid kludge in pvrusb2 involved in detecting tda9887 - client attachment. Use the driver id instead, now that the ID - is being set. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-22 03:49 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-i2c-core.c: - (pvr2_i2c_core_singleton): - * v4l_experimental/pvrusb2/pvrusb2-main.c: - * v4l_experimental/pvrusb2/pvrusb2-sysfs.c: - (pvr2_sysfs_class_create): - - - Various minor fixes to permit clean pvrusb2 compilation against - kernel version 2.6.16. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-22 03:45 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-audio.c: - (pvr2_msp3400_describe), (pvr2_i2c_msp3400_setup): - * v4l_experimental/pvrusb2/pvrusb2-demod.c: (demod_describe), - (pvr2_i2c_demod_setup): - * v4l_experimental/pvrusb2/pvrusb2-tuner.c: (pvr2_tuner_describe), - (pvr2_i2c_tuner_setup): - * v4l_experimental/pvrusb2/pvrusb2-video-v4l.c: (decoder_describe), - (pvr2_i2c_decoder_v4l_setup): - - - Make it easier to find out which pvrusb2 handlers have been - assigned to which attached I2C clients. This implements a - describe function for each handler and some debug code which can - log when a handler is associated. (The describe function hook - has been there since the big change back on 31-Dec-2005; new - logic here uses that hook.) - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-22 00:39 mchehab - - * linux/drivers/media/video/em28xx/em28xx-video.c: - - CodingStyle fixes. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-22 00:23 mchehab - - * linux/drivers/media/video/em28xx/em28xx-video.c: - - Implemented VIDIOC_G_FMT/S_FMT for sliced VBI - - VIDIOC_S_FMT now calls a function - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-21 22:03 mchehab - - * linux/drivers/media/video/em28xx/em28xx-cards.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: (em28xx_config), - (em28xx_v4l2_open), (em28xx_release_resources), (em28xx_v4l2_read): - * linux/drivers/media/video/em28xx/em28xx.h: - - Copyright changes were applied to wrong module. Fixing. - - Fixed VBI compilation. - - Included capacity to specify vbi and video number. - - Added a better control for using more than one em28xx device. - - VIDIOC_G_FMT now calls a function. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-21 21:48 mchehab - - * linux/drivers/media/video/tvp5150.c: (tvp5150_set_vbi), - (tvp5150_get_vbi), (decode_vbi_data), (tvp5150_command): - * linux/include/media/v4l2-common.h: - - Added iocls to configure VBI on tvp5150 - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-21 21:33 mchehab - - * linux/drivers/media/video/videodev.c: (video_register_device): - * linux/include/linux/videodev2.h: - - Moved some hardcoded minor numbers to videodev2.h - - Included more comments for sliced VBI standards - - Included some VBI macros to group similar standards - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-21 18:31 mcisely - - * linux/drivers/media/video/tda9887.c: - - - Fix tda9887.c to actually use its allocated ID - (I2C_DRIVERID_TDA9887). - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-21 17:29 mkrufky - - * linux/drivers/media/video/cx88/Kconfig: - * linux/drivers/media/video/cx88/Makefile: - - make VP-3054 Secondary I2C Bus Support a Kconfig option. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-21 17:16 mkrufky - - * linux/drivers/media/video/cx88/cx88-cards.c: (hauppauge_eeprom): - -Recognise Hauppauge card #34519 - - Signed-off-by: Ian Pickworth <ian@pickworth.me.uk> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-21 16:51 mkrufky - - * v4l/Makefile: - * v4l/scripts/merge-pvrusb2.sh: - - 'make pvrusb2-unmerge' will un-patch the build files - without the need to do 'make clean' - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-21 16:21 mkrufky - - * linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c: - * linux/drivers/media/dvb/frontends/dvb-pll.c: - * linux/drivers/media/dvb/frontends/dvb-pll.h: - - rename dvb_pll_tbmv30111in to dvb_pll_samsung_tbmv - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-21 15:59 mkrufky - - * linux/drivers/media/dvb/b2c2/Kconfig: - * linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c: - (flexcop_frontend_init): - * linux/drivers/media/dvb/frontends/Kconfig: - * linux/drivers/media/dvb/frontends/Makefile: - * linux/drivers/media/dvb/frontends/dvb-pll.c: - * linux/drivers/media/dvb/frontends/nxt2002.c: - * linux/drivers/media/dvb/frontends/nxt2002.h: - * linux/drivers/media/dvb/frontends/nxt200x.c: - (nxt200x_setup_frontend_parameters): - * v4l/Makefile: - - Kill nxt2002 module in favor of nxt200x - - Repair broken nxt2002 support in the nxt200x module. - - Make the flexcop driver use nxt200x instead of the - nxt2002 module for the Air2PC 2nd generation PCI card. - - Remove the nxt2002 module from cvs and kernel build. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-21 04:42 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-v4l2.c: (pvr2_v4l2_read): - - -Deal with minor pvrusb2 compilation warning. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-19 18:13 mkrufky - - * linux/drivers/media/video/bttv-cards.c: - - group dvb-bt8xx Subsystem ID's together, in order. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-19 15:35 mchehab - - * linux/drivers/media/video/tvp5150.c: (tvp5150_set_vbi), - (tvp5150_command): - - Implemented sliced VBI set on VIDIOC_S_FMT - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-19 15:26 nshmyrev - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - (saa7134_board_init1): - * linux/drivers/media/video/saa7134/saa7134-dvb.c: (dvb_init): - * linux/drivers/media/video/saa7134/saa7134.h: - - mark Typhoon cards as OEM of Lifeview. - - Signed-off-by: Peter Missel <peter.missel@onlinehome.de> - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2006-01-19 14:42 mchehab - - * linux/drivers/media/video/tvp5150.c: (tvp5150_write_inittab), - (tvp5150_vdp_init), (tvp5150_vbi_get_cap), (tvp5150_set_vbi), - (tvp5150_command), (tvp5150_detect_client): - * linux/drivers/media/video/tvp5150_reg.h: - * linux/include/linux/videodev2.h: - * linux/drivers/media/video/saa7115.c: - * linux/drivers/media/video/cx25840/cx25840-vbi.c: - - - Added other sliced VBI types to videodev2.h - - implemented VIDIOC_G_SLICED_VBI_CAP for tvp5150. This is - dynamically filled based on defined VDP C-RAM values filled - by the driver. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-19 11:50 mchehab - - * linux/drivers/media/video/tvp5150.c: (dump_reg_range), - (dump_reg), (tvp5150_vdp_init), (tvp5150_set_vbi), - (tvp5150_detect_client): - * linux/drivers/media/video/tvp5150_reg.h: - - Renamed some registers and improved register debug message - - Some cleanups at register dump - - Added code to set VBI processor (VDP) - - VBI code still incomplete - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-19 03:30 mchehab - - * linux/drivers/media/video/em28xx/em28xx-cards.c: - - Added credits for sn9c102 kernel module and his author where - some parts of em28xx-cards were based. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-19 02:52 mchehab - * linux/drivers/media/video/tvp5150.c: (tvp5150_reset): - - Fixes tvp5150a/am1 detection. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-19 02:45 mkrufky - - * linux/drivers/media/video/cx88/Kconfig: - - VIDEO_CX88_ALSA must select SND_PCM - - Signed-off-by: Adrian Bunk <bunk@stusta.de> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-18 21:49 hverkuil - - * linux/drivers/media/video/tvaudio.c: (tda9840_checkit): - Add probe check for the tda9840 to prevent misdetection of - a Micronas dpl3518a as a tda9840. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-18 21:29 hverkuil - - * linux/drivers/media/video/msp3400-driver.c: - * linux/drivers/media/video/msp3400-kthreads.c: (msp3400c_setmode), - (msp3400c_setstereo), (msp3410d_thread): - Fix handling of VIDIOC_G_TUNER audmode in msp3400: audmode - is only changed by the user with S_TUNER, never by the driver. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-18 20:40 nshmyrev - - * linux/drivers/media/common/ir-keymaps.c: - * linux/drivers/media/video/saa7134/saa7134-input.c: - (saa7134_input_init1): - * linux/include/media/ir-common.h: - - Remove duplicated Avermedia keymaps. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2006-01-18 20:19 nshmyrev - - * linux/drivers/media/common/ir-keymaps.c: - * linux/drivers/media/video/bttv-input.c: (bttv_input_init): - * linux/drivers/media/video/cx88/cx88-input.c: (cx88_ir_init): - * linux/drivers/media/video/saa7134/saa7134-input.c: - (saa7134_input_init1): - * linux/include/media/ir-common.h: - - Remove duplicated keymaps and add keymap for KWorld LTV883IR. - Thanks to Jon Ferguson <jon@sd-6.org>. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2006-01-17 21:15 rmcc - - * linux/drivers/media/common/ir-keymaps.c: - * linux/drivers/media/video/ir-kbd-i2c.c: (ir_attach): - * linux/drivers/media/video/saa7134/saa7134-input.c: - (saa7134_input_init1): - * linux/include/media/ir-common.h: - - - IR cleanups - - Changed all IR codes to hex for consistency - - All keymaps were renamed to ir_codes_<model> - - Cleaned duplicates - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-17 20:06 rmcc - - * linux/drivers/media/common/Makefile: - * linux/drivers/media/common/ir-common.c: - * linux/drivers/media/common/ir-functions.c: (ir_input_key_event), - (ir_input_init), (ir_input_nokey), (ir_input_keydown), - (ir_extract_bits), (getbit), (ir_dump_samples), - (ir_decode_pulsedistance), (ir_decode_biphase): - * linux/drivers/media/common/ir-keymaps.c: - * linux/drivers/media/video/bttv-input.c: - * linux/drivers/media/video/cx88/cx88-input.c: - * linux/drivers/media/video/em28xx/em28xx-input.c: - * linux/drivers/media/video/ir-kbd-i2c.c: - * linux/drivers/media/video/saa7134/saa7134-input.c: - * linux/include/media/ir-common.h: - * linux/include/media/ir-keymaps.h: - * v4l/Makefile: - - - Keymaps are exported by ir-common instead of being included by - each and every module - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-17 16:40 rmcc - - * linux/drivers/media/video/ir-kbd-i2c.c: (ir_attach): - - - Added support for the newer (Grey) Hauppauge remote to - ir-kbd-i2c - - Signed-off-by: J.O. Aho <trizt@iname.com> - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-17 16:26 rmcc - - * linux/include/media/ir-keymaps.h: - - - Added new Hauppauge remote (Hauppauge grey), contributed by - J.O. Aho <trizt@iname.com> (with some small changes) - - Changed KEY_KPx (keypad numerals) references to KEY_x, to - avoid problems when NumLock is off (suggested by - Peter Missel <peter.missel@onlinehome.de>) - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-17 16:19 rmcc - - * linux/drivers/media/common/ir-common.c: - * linux/drivers/media/video/bttv-input.c: - * linux/drivers/media/video/cx88/cx88-input.c: - * linux/drivers/media/video/em28xx/em28xx-input.c: - * linux/drivers/media/video/ir-kbd-i2c.c: - * linux/drivers/media/video/saa7134/saa7134-input.c: - * linux/include/media/ir-keymaps.h: - - - Moved all remote keytables to a single header file. It makes no - sense whatsoever having them scattered around. - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-17 05:46 mkrufky - - * linux/Documentation/video4linux/CARDLIST.cx88: - * linux/drivers/media/video/cx88/cx88-cards.c: - - Add PCI ID for DigitalNow DVB-T Dual, - rebranded DViCO FusionHDTV DVB-T Dual. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-15 23:15 mchehab - - * linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c: (dvb_bt8xx_probe), - (dvb_bt8xx_remove): - * linux/drivers/media/video/bttv-gpio.c: (bttv_sub_probe), - (bttv_sub_remove): - * linux/drivers/media/video/bttv.h: - - Add bttv sub bus_type probe and remove methods - - Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> - Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-15 23:02 mkrufky - - * linux/drivers/media/video/em28xx/em28xx-input.c: - (get_key_pinnacle_usb), (em28xx_set_ir): - - Added remote control support for pinnacle pctv - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-15 21:02 mkrufky - - * linux/drivers/media/dvb/frontends/dvb-pll.c: - - Samsung TBMV30111IN has 6 entries - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-15 17:58 mkrufky - - * linux/include/media/tuner-types.h: - - tuner_params->tda988x is unused right now, - so let's disable it for 2.6.16 - - This is currently happening at the card level, but the plan - is to move this configuration into the tuner_params configuration. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-15 17:30 mkrufky - - * linux/drivers/media/video/cx88/cx88-alsa.c: - - fix some sound quality & distortion problems. - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-15 17:07 hverkuil - - * linux/drivers/media/video/msp3400-driver.c: - - Return -EINVAL for unknown commands. Requested by Mike Isely. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-15 16:47 hverkuil - - * linux/drivers/media/video/msp3400.h: - - Moved MSP_SET_MATRIX to v4l2-common.h - * linux/drivers/media/video/mt20xx.c: (mt2032_init), (mt2050_init), - (microtune_init): - * linux/drivers/media/video/tda8290.c: (tda8290_init): - - Renamed tv_freq/radio_freq to set_tv_freq/set_radio_freq - * linux/drivers/media/video/tea5767.c: (set_radio_freq), - (tea5767_tuner_init): - - Renamed tv_freq/radio_freq to set_tv_freq/set_radio_freq - - Fix typos - - Fix integer overflows - * linux/drivers/media/video/tuner-core.c: (set_tv_freq), - (set_radio_freq), (set_freq), (set_type), (tuner_status), - (tuner_attach), (tuner_command), (tuner_resume): - - Split old freq field into a tv_freq and a radio_freq. Prevents - that a radio tuner is initialized with a tv frequency or vice - versa. - - When switching to radio mode initialize the tuner with the last - used radio frequency (this was already done for the TV mode). - As a result of these changes the tuner module now remembers the - last set radio and TV frequencies, which is what you would expect - to happen. - - Move out of range frequencies to the closest valid frequency as per - v4l2 API spec. - - Fix incorrect initial radio frequency (multiplier is 16000, not 16) - * linux/drivers/media/video/tuner-simple.c: (default_set_tv_freq), - (default_set_radio_freq), (default_tuner_init): - - Add boundary check for out of range frequencies. - - Use new flag to check if the order of the CB and freq. depends on - the last set frequency. That is needed for some tuners or you can - get static as a result. - - For this new check use the last set div value, not the last frequency - as radio frequencies always much higher due to the 16000 multiplier. - - Also add this check when setting the radio frequency. - * linux/drivers/media/video/tuner-types.c: - - Add the new cb_first_if_lower_freq flag for those tuners where the - datasheet indicates that this is necessary. - * linux/drivers/media/video/v4l2-common.c: - - Add MSP_SET_MATRIX - * linux/include/media/tuner-types.h: - - Add cb_first_if_lower_freq flag - * linux/include/media/tuner.h: - - Split old freq value, add last_div field - * linux/include/media/v4l2-common.h: - - Add MSP_SET_MATRIX - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-15 14:43 mkrufky - - * linux/include/media/tuner-types.h: - - Moved tda988x options into tuner_params struct. - - tda988x parameters should be defined per tuner_param_type, - for each tuner_params array member. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-15 12:38 nshmyrev - - * v4l/scripts/hwdata.pl: - - Update hwdata script. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2006-01-15 10:08 mchehab - - * linux/drivers/media/dvb/ttpci/av7110_hw.c: (load_dram), - (av7110_bootarm): - * linux/drivers/media/dvb/ttpci/av7110_hw.h: - - BOOT_SIZE name is also used at alpha and were breaking - compiling with allyesconfig. - - All BOOT_* renamed to AV7110_BOOT* to fix and keep names - with the same style. - Thanks to Andrew Morton for pointing this. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-15 09:48 mchehab - - * linux/drivers/media/dvb/dvb-core/dvbdev.c: (dvb_register_device), - (dvb_register_adapter), (dvb_unregister_adapter): - * linux/drivers/media/video/cx88/cx88-core.c: (cx88_core_get), - (cx88_core_put): - * linux/drivers/media/video/em28xx/em28xx-video.c: - (em28xx_release_resources): - * linux/drivers/media/video/saa7134/saa7134-core.c: - (saa7134_initdev), (saa7134_finidev), (saa7134_ts_register), - (saa7134_ts_unregister): - * linux/drivers/media/video/videodev.c: (video_open), - (video_register_device), (video_unregister_device): - - Semaphore to mutex conversion. - - The conversion was generated via scripts, and the result was validated - automatically via a script as well. - - Signed-off-by: Ingo Molnar <mingo@elte.hu> - Signed-off-by: Andrew Morton <akpm@osdl.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-15 09:12 mchehab - - * linux/drivers/media/video/bttv-driver.c: (check_alloc_btres), - (free_btres), (bttv_common_ioctls), (radio_open): - * linux/drivers/media/video/bttvp.h: - * v4l/compat.h: - - Semaphore to mutex conversion. - - Signed-off-by: Ingo Molnar <mingo@elte.hu> - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-15 08:57 mchehab - - * linux/drivers/media/video/cx88/cx88-tvaudio.c: - (set_audio_finish): - - provide a module parameter workaround to always enable - analog output. - - Signed-off-by: Panagiotis Christeas <p_christ@hol.gr> - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-15 08:54 mchehab - - * linux/drivers/media/video/cx25840/cx25840-core.c: - * linux/drivers/media/video/cx88/cx88-alsa.c: - (_cx88_start_audio_dma), (_cx88_stop_audio_dma): - * linux/drivers/media/video/tvp5150.c: - - - This patch makes some needlessly global code static. - - Signed-off-by: Adrian Bunk <bunk@stusta.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-15 08:47 mchehab - - * linux/drivers/media/video/cx88/Kconfig: - - cx88 alsa is experimental. - - Removed need of PCM OSS. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-15 08:43 mchehab - - * linux/drivers/media/video/cx88/cx88-alsa.c: - - - Not sure what went wrong here, but SND_PCI_PM_CALLBACKS got deleted. - - Signed-off-by: Andrew Morton <akpm@osdl.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-15 02:26 mcisely - - * v4l_experimental/pvrusb2/Kbuild: - * v4l_experimental/pvrusb2/Makefile: - - -Remove last vestiges of previous pvrusb2 build setup, since this - build is driven now by the main build. Makefile here is adjusted - to outsource build actions "upstairs" to V4L if it is still used - so previous behavior is still present. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-15 01:05 mkrufky - - * v4l/scripts/merge-pvrusb2.sh: - - prevent 'make pvrusb2' from running twice in a row. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-15 00:43 mkrufky - - * v4l/Make.config: - * v4l/Makefile: - * v4l/scripts/merge-pvrusb2.sh: - - Add option to build pvrusb2 driver - along with the rest of v4l-dvb cvs. - - make pvrusb2 will symlink the code from the v4l_experimental dir. - - to build: - - make pvrusb2 - make - make install - - - Always do 'make clean' before cvs commit, to un-patch the Makefile, - returning the build environment to its original state. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-14 23:50 hhackmann - * linux/drivers/media/video/saa7134/saa7134-tvaudio.c: - - enabled audio PLL. This is mandatory for NICAM sound - - modify FM IF frequency to 5.5MHz for SAA7133/35 if tuner is tda8290 - - * linux/drivers/media/video/saa7134/saa7134-cards.c: - - enable radio mode for Philips Tiger Board - - added GPIO settigs for Philips Tiger Board - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t-online.de> - -2006-01-14 22:06 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-debug.h: - * v4l_experimental/pvrusb2/pvrusb2-i2c-core.c: (pvr2_i2c_xfer), - (pvr2_i2c_client_cmd): - * v4l_experimental/pvrusb2/pvrusb2-main.c: (pvr_init): - * v4l_experimental/pvrusb2/pvrusb2-v4l2.c: (pvr2_v4l2_do_ioctl): - - -Change global "debug" to "pvrusb2_debug". This should be the - only actual public global in the entire driver (everything else - is either static or held through a context pointer). - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-14 21:09 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-hdw.c: - (pvr2_hdw_get_driver_name): - * v4l_experimental/pvrusb2/pvrusb2-hdw.h: - * v4l_experimental/pvrusb2/pvrusb2-v4l2.c: (pvr2_v4l2_do_ioctl): - - -Use v4l_print_ioctl() where appropriate. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-14 20:14 mkrufky - - * linux/drivers/media/video/bt832.c: - * linux/drivers/media/video/tda7432.c: - * linux/drivers/media/video/tda9875.c: - - fix 2.6.12 backward-compat - - Thanks-to: Colin Guthrie <linuxtv@colin.guthr.ie> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-14 20:08 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-encoder.c: - (pvr2_encoder_configure), (pvr2_encoder_start), - (pvr2_encoder_stop): - - -Use encoder command definitions from cx2341x.h instead of - hard-coding them into pvrusb2's encoder module. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-14 19:05 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-audio.c: - * v4l_experimental/pvrusb2/pvrusb2-demod.c: - * v4l_experimental/pvrusb2/pvrusb2-eeprom.c: - * v4l_experimental/pvrusb2/pvrusb2-i2c-chips-v4l2.c: - (pvr2_i2c_probe): - * v4l_experimental/pvrusb2/pvrusb2-main.c: - * v4l_experimental/pvrusb2/pvrusb2-tuner.c: (set_type): - * v4l_experimental/pvrusb2/pvrusb2-version.h: - * v4l_experimental/pvrusb2/pvrusb2-video-v4l.c: - * v4l_experimental/pvrusb2/pvrusb2-video-v4l.h: - - -Clean up code & comditional compilation stuff which doesn't - belong in V4L tree or otherwise might cause compilation problems - in certain kernel environments. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-13 16:33 trafford - - * linux/include/linux/i2c-id.h: - - add i2c ids for drivers: upd64031a saa717x upd64083 wm8739 - - Signed-off-by: Tyler Trafford <tatrafford@comcast.net> - -2006-01-12 21:56 mkrufky - - * linux/include/media/tuner-types.h: - - add param_type dvbs2 - - disable all dvb param_types, which will not - be needed until we merge dvb-pll. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-12 20:06 hverkuil - - * linux/Documentation/video4linux/CARDLIST.tuner: - * linux/drivers/media/video/tuner-types.c: - * linux/drivers/media/video/tveeprom.c: - * linux/include/media/tuner.h: - - Add support for Samsung tuner TCPN 2121P30A, used in - Hauppauge PVR-500 cards. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-12 17:57 mkrufky - - * v4l/scripts/cardlist: - - reactivated CARDLIST.tuner automatic update script. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-12 17:20 mkrufky - - * linux/drivers/media/dvb/dvb-usb/cxusb.c: - - cleaned up MODULE_AUTHOR for better codingstyle - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-12 17:08 mkrufky - - * v4l/scripts/cardlist: - - disable CARDLIST.tuner automatic regeration script, - until it can be updated to handle latest redesign. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-12 17:03 mkrufky - - * linux/drivers/media/video/Makefile: - * linux/drivers/media/video/tuner-simple.c: (default_set_tv_freq), - (default_set_radio_freq): - * linux/drivers/media/video/tuner-types.c: - * linux/include/media/tuner-types.h: - * linux/include/media/tuner.h: - * v4l/Makefile: - - Redesign tuners array for maximum flexibility - - tunertype struct redefined to allow one or more tuner_params structs - per tuner definition, one for each video standard. - - Each tuner_params struct has an element containing an arbitrary - amount of tuner_ranges. - (this is needed for dvb tuners - to be handled later) - - A tuner_range may be referenced by multiple tuner_params structs. - There are many duplicates in here. Reusing tuner_range structs, - rather than defining new ones for each tuner, will cut down on - memory usage, and is preferred when possible. - - tunertype struct contains an element, has_tda988x. - We must set this for all tunertypes that contain a tda988x - chip, and then we can remove this setting from the various - card structs. - - Improves tuners array memory usage efficiency. - - Right now, all tuners are using the first tuner_params array element - for analog mode. In the future, we will be merging similar tuner - definitions together, such that each tuner definition will have a - tuner_params struct for each available video standard. At that point, - the tuner_params[] array element will be chosen based on the video - standard in use. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-12 16:55 mkrufky - - * linux/drivers/media/dvb/dvb-usb/cxusb.c: - - Updated MODULE_AUTHOR - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-12 16:13 mkrufky - - * linux/drivers/media/video/cx88/Makefile: - - Build cx88-alsa when CONFIG_VIDEO_CX88_ALSA is selected. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-12 13:26 mchehab - - * linux/drivers/media/video/cx88/cx88-vp3054-i2c.c: - - Include missing MODULE_* macros - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-12 13:01 mchehab - - * linux/drivers/media/dvb/bt8xx/bt878.c: - * linux/drivers/media/dvb/ttpci/av7110.c: - * linux/drivers/media/video/bt832.c: - * linux/drivers/media/video/btcx-risc.c: - * linux/drivers/media/video/bttv-cards.c: - * linux/drivers/media/video/bttv-driver.c: - * linux/drivers/media/video/bttv-i2c.c: - * linux/drivers/media/video/cx25840/cx25840-core.c: - * linux/drivers/media/video/cx88/cx88-alsa.c: - * linux/drivers/media/video/msp3400-driver.c: - * linux/drivers/media/video/saa7134/saa7134-core.c: - * linux/drivers/media/video/tda7432.c: - * linux/drivers/media/video/tda9875.c: - - static vars are equal to zero by default. Removed - unnecessary =0 from them, saving some data space; - - Fixed compiling against kernels bellow 2.6.13. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-12 01:55 mchehab - - * linux/drivers/media/video/saa7134/Kconfig: - - There's no reason for an ALSA driver to select an OSS legacy - userspace interface. - - Signed-off-by: Adrian Bunk <bunk@stusta.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-12 01:48 mchehab - - * linux/drivers/media/dvb/frontends/mt312.c: (mt312_set_frontend): - - Trivial patch breaking if (ret=foo()) into two lines - - * linux/drivers/media/video/Kconfig: - - Changes url for stradis.com - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-12 00:51 mchehab - - * linux/drivers/media/video/compat_ioctl32.c: (get_video_tuner32), - (put_video_tuner32), (get_video_buffer32), (put_video_buffer32), - (put_video_window32), (get_v4l2_window32), (put_v4l2_window32), - (get_v4l2_pix_format), (put_v4l2_pix_format), - (get_v4l2_vbi_format), (put_v4l2_vbi_format), (get_v4l2_format32), - (put_v4l2_format32), (get_v4l2_standard), (put_v4l2_standard), - (get_v4l2_standard32), (put_v4l2_standard32), (get_v4l2_tuner), - (put_v4l2_tuner), (get_v4l2_buffer32), (put_v4l2_buffer32), - (get_v4l2_framebuffer32), (put_v4l2_framebuffer32), - (get_v4l2_input32), (put_v4l2_input32), (get_v4l2_input), - (put_v4l2_input), (do_set_window), (do_video_ioctl), - (v4l_compat_ioctl32): - - Adds suppport or fix support for VIDIOC_ENUMSTD, VIDIOC_ENUMINPUT, - VIDIOC_G_TUNER and VIDIOC_S_TUNER. - - Fix the warnings at compile time and add checks for the pointer validity - using access_ok(). - - v4l_print_ioctl() has also be added to identify possible missing ioctls. - - Has been tested on sparc64 and amd64. Other arches such as mips and hppa - are expected to work as sparc. - - Signed-off-by: Guy Martin <gmsoft@tuxicoman.be> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-12 01:26 mkrufky - - * linux/drivers/media/dvb/frontends/dvb-pll.c: - * linux/drivers/media/dvb/frontends/dvb-pll.h: - * linux/drivers/media/dvb/ttpci/budget-av.c: - (philips_sd1878_tda8261_pll_set), - (philips_sd1878_ci_set_symbol_rate), (frontend_init): - * linux/drivers/media/dvb/ttpci/budget.h: - - added knc1 tv star dvb-s support with philips tuner sd1878. - - Signed-off-by: Regis Prevot <regis.prevot@anevia.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-12 01:17 mkrufky - - * linux/drivers/media/dvb/dvb-usb/cxusb.c: - * linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h: - - Added USB ID for DigitalNow DVB-T Dual USB, - rebranded DViCO FusionHDTV DVB-T Dual USB - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-12 00:49 mkrufky - - * linux/Documentation/video4linux/CARDLIST.cx88: - * linux/drivers/media/video/cx88/cx88-cards.c: - - Add PCI ID for UltraView DVB-T Plus, - rebranded DViCO FusionHDTV DVB-T Plus - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-12 00:11 mchehab - - * linux/drivers/media/video/cx25840/cx25840-core.c: (set_input), - (set_v4lfmt), (cx25840_command), (cx25840_detect_client): - - debug var renamed to cx25840 to avoid conflicts with other - var with the same name at kernel - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-11 20:59 hverkuil - - * linux/drivers/media/video/mt20xx.c: (mt2050_set_if_freq), - (microtune_init): - * linux/drivers/media/video/tea5761.c: (set_radio_freq): - * linux/drivers/media/video/tea5767.c: (set_radio_freq): - * linux/drivers/media/video/tuner-core.c: (tuner_attach), - (tuner_command): - * linux/drivers/media/video/tuner-simple.c: - * linux/include/media/tuner.h: - - debug global var is already used inside kernel, so renamed - debug to tuner_debug for the tuner module - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-11 19:13 mchehab - - * linux/drivers/media/common/saa7146_core.c: (vmalloc_to_sg), - (saa7146_init_one): - * linux/drivers/media/common/saa7146_fops.c: (fops_open), - (saa7146_vv_init): - * linux/drivers/media/dvb/b2c2/flexcop.c: (flexcop_device_kmalloc): - * linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c: (dvb_bt8xx_probe): - * linux/drivers/media/dvb/dvb-core/dvb_ca_en50221.c: - (dvb_ca_en50221_init): - * linux/drivers/media/dvb/dvb-core/dvb_frontend.c: - (dvb_register_frontend): - * linux/drivers/media/dvb/dvb-usb/dtt200u-fe.c: - (dtt200u_fe_attach): - * linux/drivers/media/dvb/dvb-usb/dvb-usb-init.c: - (dvb_usb_device_init): - * linux/drivers/media/dvb/dvb-usb/dvb-usb-urb.c: - (dvb_usb_allocate_stream_buffers), (dvb_usb_urb_init): - * linux/drivers/media/dvb/dvb-usb/vp702x-fe.c: (vp702x_fe_attach): - * linux/drivers/media/dvb/dvb-usb/vp7045-fe.c: (vp7045_fe_attach): - * linux/drivers/media/dvb/frontends/bcm3510.c: (bcm3510_attach): - * linux/drivers/media/dvb/frontends/dib3000mb.c: - (dib3000mb_attach): - * linux/drivers/media/dvb/frontends/dib3000mc.c: - (dib3000mc_attach): - * linux/drivers/media/dvb/frontends/lgdt330x.c: (lgdt330x_attach): - * linux/drivers/media/dvb/frontends/mt352.c: (mt352_attach): - * linux/drivers/media/dvb/frontends/nxt200x.c: (nxt200x_attach): - * linux/drivers/media/dvb/pluto2/pluto2.c: (pluto2_probe): - * linux/drivers/media/dvb/ttpci/av7110.c: (av7110_attach): - * linux/drivers/media/dvb/ttpci/budget-av.c: (budget_av_attach): - * linux/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c: - (ttusb_probe): - * linux/drivers/media/dvb/ttusb-dec/ttusb_dec.c: (ttusb_dec_probe): - * linux/drivers/media/video/bt832.c: (bt832_attach): - * linux/drivers/media/video/bttv-gpio.c: (bttv_sub_add_device): - * linux/drivers/media/video/cs53l32a.c: (cs53l32a_attach): - * linux/drivers/media/video/cx25840/cx25840-core.c: - (cx25840_detect_client): - * linux/drivers/media/video/cx88/cx88-blackbird.c: (mpeg_open), - (blackbird_probe): - * linux/drivers/media/video/cx88/cx88-core.c: (cx88_core_get): - * linux/drivers/media/video/cx88/cx88-dvb.c: (dvb_probe): - * linux/drivers/media/video/cx88/cx88-video.c: (video_open), - (cx8800_initdev): - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/media/video/saa7115.c: (saa7115_attach): - * linux/drivers/media/video/saa711x.c: (saa711x_detect_client): - * linux/drivers/media/video/saa7127.c: (saa7127_attach): - * linux/drivers/media/video/saa7134/saa6752hs.c: - (saa6752hs_attach): - * linux/drivers/media/video/saa7134/saa7134-core.c: - (saa7134_initdev): - * linux/drivers/media/video/saa7134/saa7134-video.c: (video_open): - * linux/drivers/media/video/tda7432.c: (tda7432_attach): - * linux/drivers/media/video/tda9875.c: (tda9875_attach): - * linux/drivers/media/video/tda9887.c: (tda9887_attach): - * linux/drivers/media/video/tuner-core.c: (tuner_attach): - * linux/drivers/media/video/tvaudio.c: (chip_attach): - * linux/drivers/media/video/tveeprom.c: (tveeprom_command), - (tveeprom_detect_client): - * linux/drivers/media/video/tvp5150.c: (tvp5150_detect_client): - * linux/drivers/media/video/v4l1-compat.c: - (v4l_compat_translate_ioctl): - * linux/drivers/media/video/video-buf.c: (videobuf_vmalloc_to_sg), - (videobuf_pages_to_sg), (videobuf_alloc): - * linux/drivers/media/video/videodev.c: (video_device_alloc): - * linux/drivers/media/video/wm8775.c: (wm8775_attach): - - - Conversions from kmalloc+memset to k(z|c)alloc. - - Signed-off-by: Panagiotis Issaris <takis@issaris.org> - Signed-off-by: Andrew Morton <akpm@osdl.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> - -2006-01-11 18:48 mchehab - - * linux/drivers/media/video/bt832.c: (bt832_hexdump): - * linux/drivers/media/video/cs53l32a.c: (cs53l32a_attach): - * linux/drivers/media/video/cx25840/cx25840-core.c: (set_input), - (set_v4lfmt), (cx25840_command), (cx25840_detect_client): - * linux/drivers/media/video/msp3400-driver.c: (msp_reset), - (msp_read), (msp_write), (msp_set_scart), (msp_set_mute), - (msp_set_audio), (msp_modus): - * linux/drivers/media/video/msp3400-kthreads.c: (msp3400c_setmode), - (msp3400c_setstereo), (msp3400c_print_mode), (autodetect_stereo), - (watch_stereo), (msp3400c_thread), (msp3410d_thread), - (msp34xxg_set_source), (msp34xxg_thread), (msp34xxg_detect_stereo): - * linux/drivers/media/video/msp3400.h: - * linux/drivers/media/video/saa7115.c: - (saa7115_set_audio_clock_freq), (saa7115_set_v4lstd), - (saa7115_set_v4lfmt), (saa7115_command), (saa7115_attach): - * linux/drivers/media/video/saa7127.c: (saa7127_set_vps), - (saa7127_set_cc), (saa7127_set_xds), (saa7127_set_wss), - (saa7127_set_video_enable), (saa7127_set_std), - (saa7127_set_output_type), (saa7127_set_input_type), - (saa7127_attach): - * linux/drivers/media/video/tda7432.c: (tda7432_write), - (tda7432_read), (tda7432_set), (do_tda7432_init), - (tda7432_command): - * linux/drivers/media/video/tda9875.c: (tda9875_read), - (tda9875_attach): - * linux/drivers/media/video/tvaudio.c: (chip_write), (chip_read), - (chip_read2), (chip_cmd), (chip_thread), (generic_checkmode), - (tda9840_getmode), (tda9873_getmode), (tda9873_setmode), - (tda9874a_setup), (tda9874a_getmode), (tda9874a_setmode), - (tda9874a_checkit), (ta8874z_getmode), (ta8874z_setmode), - (chip_attach), (chip_command): - * linux/include/media/v4l2-common.h: - - debug global var is already used inside kernel. - - v4l_dbg now expects the debug var - - global vars inside msp34xx renamed to msp_* - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-10 19:55 rmcc - - * linux/drivers/media/video/saa7134/saa7134-cards.c: - - - The Pinnacle 300i needs tda9887 port2 set to 1 - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-10 05:47 mkrufky - - * linux/drivers/media/dvb/dvb-usb/cxusb.c: - (cxusb_mt352_demod_init), (cxusb_lgz201_tuner_attach), - (cxusb_dtt7579_tuner_attach), (cxusb_mt352_frontend_attach), - (cxusb_probe): - - Add support for DViCO FusionHDTV DVB-T USB devices - (Thomson dtt7579 and LG z201 based) - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-10 04:30 mkrufky - - * linux/drivers/media/video/bttv-cards.c: - - whitespace cleanup: insert missing space before curly brackets - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-10 04:27 mkrufky - - * linux/Documentation/video4linux/CARDLIST.bttv: - * linux/drivers/media/video/bttv-cards.c: - * linux/drivers/media/video/bttv-input.c: (bttv_input_init): - * linux/drivers/media/video/bttv.h: - - Add card MagicTV (rebranded MachTV) - - Signed-off-by: Julian Calaby <julian.calaby@gmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-09 23:58 pascoe - - * linux/drivers/media/video/cx88/cx88-input.c: (cx88_ir_irq): - Add missing case preventing the operation of HVR1100 remote control. - - Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au> - -2006-01-09 18:38 mkrufky - - * linux/drivers/media/video/saa7134/saa7134-input.c: - - disable IR_KEYTAB_TYPE flydvb_codes to prevent compile warning - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-09 17:12 mchehab - - * linux/drivers/media/dvb/cinergyT2/cinergyT2.c: - * linux/drivers/media/dvb/ttpci/budget.h: - * linux/drivers/media/video/bt832.c: (bt832_attach), - (bt832_detach), (bt832_command): - * linux/drivers/media/video/bttv-i2c.c: - * linux/drivers/media/video/cx88/Kconfig: - * linux/drivers/media/video/tda7432.c: (tda7432_attach), - (tda7432_command), (tda7432_init): - * linux/drivers/media/video/tuner-core.c: - * linux/drivers/media/video/tvp5150.c: - * linux/include/linux/i2c-id.h: - * linux/include/media/saa7146.h: - - Several i2C cleanups to compile on both current linux - and kernels >2.6.15 - - * linux/drivers/media/video/tda9875.c: (tda9875_write), - (i2c_read_register), (tda9875_set), (do_tda9875_init), - (tda9875_checkit), (tda9875_attach), (tda9875_command): - - Old patch reverted since it uses a different way to - call i2c functions. - - * v4l/Makefile: - - Making compile bt832, tda9732 and tda9875 - - * v4l/scripts/gentree.pl: - Some fixes to remove unnecessary ifs at kernel - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-09 16:24 mkrufky - - * linux/Documentation/dvb/get_dvb_firmware: - - Bluebird firmware hosting moved to common dvb firmware dir on linuxtv.org - - my $url = "http://www.linuxtv.org/~mkrufky/dvb-usb-bluebird-01.fw"; - + my $url = "http://www.linuxtv.org/download/dvb/firmware/dvb-usb-bluebird-01.fw"; - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-09 13:18 mkrufky - - * v4l/Makefile: - - fix typo: - -inst_ttusb-budget := dvb-ttusb-budget.o - +inst_ttusb-budget := dvb-ttusb-budget.ko - - - Signed-off-by: Julian Calaby <julian.calaby@gmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-09 06:56 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-hdw.c: - - - Remove some long-dead code from the pvrusb2 driver. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-09 06:50 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-debug.h: - * v4l_experimental/pvrusb2/pvrusb2-hdw.c: - (get_default_error_tolerance), (pvr2_hdw_setup_low), - (pvr2_hdw_render_useless_unlocked): - * v4l_experimental/pvrusb2/pvrusb2-io.c: (buffer_complete), - (pvr2_stream_setup): - * v4l_experimental/pvrusb2/pvrusb2-io.h: - * v4l_experimental/pvrusb2/pvrusb2-main.c: - - - Implement new feature in pvrusb2 (which must be enabled via a - module option) that permits the streaming logic to tolerate a - specified level of USB errors. This change makes it possible to - still function in environments with flakey USB hardware. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-09 06:42 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-hdw.c: - (pvr2_hdw_set_ctl_value_internal): - - - Implement a module option that enables an optimization where - control changes which don't actually change anything are - eliminated. This slightly improves up tuning latency for apps - that like to spit out redundant commands during a frequency - change. (The change to implement this was almost trivial.) - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-09 06:33 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-hdw-internal.h: - * v4l_experimental/pvrusb2/pvrusb2-hdw.c: (pvr2_upload_firmware1), - (pvr2_upload_firmware2), (pvr2_hdw_setup_low), (pvr2_hdw_setup): - - - Improve reporting and handling of pvrusb2 firmware load failures - (we attempt to detect the common case of firmware files not - present and inform the user - a previous long standing source of - confusion). - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-09 06:22 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-debug.h: - * v4l_experimental/pvrusb2/pvrusb2-hdw.h: - - - Change some bit masks to shift expressions, for readability - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-09 00:41 pascoe - - * linux/drivers/media/video/cx88/cx88-cards.c: - - Remove whitespace and restore trailing comma on cx88_subids - array. - - Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au> - -2006-01-09 00:22 pascoe - - * linux/drivers/media/dvb/dvb-usb/cxusb.c: - (bluebird_patch_dvico_firmware_download): - * linux/drivers/media/dvb/dvb-usb/dvb-usb-firmware.c: - (usb_cypress_load_firmware), (dvb_usb_download_firmware): - * linux/drivers/media/dvb/dvb-usb/dvb-usb.h: - - Export usb_cypress_load_firmware so device specific firmware - routines can use it. - - Move the bluebird device specific firmware hack out of the - generic code and into the cxusb driver. - - Signed-off-by: Patrick Boettcher <pb@linuxtv.org> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au> - -2006-01-08 23:21 hverkuil - - * linux/drivers/media/video/bttv-driver.c: (radio_do_ioctl): - - Add VIDIOC_LOG_STATUS to the radio device ioctl list. - * linux/drivers/media/video/msp3400-driver.c: (msp_modus): - * linux/drivers/media/video/msp3400-kthreads.c: - (msp_standard_std_name), (msp3400c_thread), (msp3410d_thread), - (msp34xxg_reset), (msp34xxg_thread): - * linux/drivers/media/video/msp3400.h: - - Reduce the confusion between modes and standards - - Fix stereo reporting for radio. - - Don't set i2c configuration if the chip doesn't support it. - - Fix reporting of current standard for radio. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-08 21:16 endriss - - * linux/drivers/media/common/saa7146_fops.c: (fops_open), - (fops_release), (fops_read), (fops_write), (saa7146_vv_init): - * linux/include/media/saa7146_vv.h: - * linux/drivers/media/dvb/ttpci/av7110.h: - * linux/drivers/media/dvb/ttpci/av7110_hw.h: - * linux/drivers/media/dvb/ttpci/av7110_v4l.c: (av7110_ioctl), - (av7110_vbi_reset), (av7110_vbi_write), (av7110_init_v4l): - - implemented v4l2 api for sliced vbi data output - to pass WSS data from userspace to the av7110 - - Signed-off-by: Oliver Endriss <o.endriss@gmx.de> - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-08 19:15 hverkuil - - * linux/drivers/media/video/msp3400-driver.c: (msp_set_mute), - (msp_set_audio): - * linux/drivers/media/video/msp3400-kthreads.c: - (msp3400c_setstereo), (watch_stereo), (msp3410d_thread): - * linux/drivers/media/video/msp3400.h: - - check capabilities for audio settings (volume, balance, - bass, treble, loudness, mute) - - added loudness support - - added missing VIDEO_AUDIO_BALANCE flags for v4l1 compatibility - - do not call msp_any_detect_stereo for non-autoselect chips to - retrieve the current stereo setting: that will temporarily mute - the sound. It is only needed when the stereo mode might be - changed, and for autoselect msp processors that do not periodically - need to update their stereo setting. - - do not wake up the thread if the standard did not change. Prevents - temporary audio drop-out if the standard is set to the same value. - - fix confused stereo detect code where V4L2_TUNER_SUB_STEREO and - V4L2_TUNER_MODE_STEREO values were used incorrectly. - - stereo mode reporting was broken (v4l2 value used to index a - string array expecting v4l1 mode values). - - do not set dsp register 0x30 in the 3410d thread: that register - does not exist for pre-'G' revision msp chips. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-08 12:16 hverkuil - - * linux/drivers/media/video/msp3400-driver.c: (msp_modus): - * linux/drivers/media/video/msp3400-kthreads.c: (msp3400c_setmode), - (msp3400c_thread), (msp3410d_thread), (msp34xxg_reset): - * linux/drivers/media/video/msp3400.h: - - Replace old norm by the v4l2_std_id values. - - Add code to correctly detect the various capabilities of the - various msp chips. It's not yet used, that's going to be the next - step. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-08 12:00 mchehab - - * linux/drivers/media/video/bt832.c: (bt832_command): - * linux/drivers/media/video/bttv-i2c.c: (attach_inform): - * linux/drivers/media/video/cx25840/cx25840.h: - * linux/drivers/media/video/msp3400-driver.c: - * linux/drivers/media/video/tda7432.c: (tda7432_write), - (tda7432_read), (tda7432_set), (do_tda7432_init), (tda7432_attach): - * linux/drivers/media/video/tda9875.c: (tda9875_write), - (tda9875_read), (i2c_read_register), (tda9875_set), - (do_tda9875_init), (tda9875_checkit), (tda9875_attach), - (tda9875_command): - * linux/drivers/media/video/tda9887.c: - * linux/drivers/media/video/tuner-core.c: - * linux/drivers/media/video/tvmixer.c: - * linux/drivers/media/video/tvp5150.c: - * linux/drivers/media/video/wm8775.c: (wm8775_attach): - * linux/include/media/tuner.h: - * linux/include/media/v4l2-common.h: - - Miscelaneous i2c cleanups and fixes to work with kernel >2.6.15 - - * linux/sound/pci/bt87x.c: - - Updated to kernel version. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-08 10:29 pascoe - - * linux/drivers/media/video/cx88/cx88-dvb.c: - (dvico_fusionhdtv_demod_init), (dntv_live_dvbt_pro_demod_init): - - Fix AGC settings for the DNTV Live! DVB-T Pro, based upon - the Windows driver's behaviour. Reduced number of signal - dropouts as a result. - - Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au> - -2006-01-08 09:08 mkrufky - - * linux/drivers/media/dvb/dvb-usb/cxusb.c: (cxusb_rc_query), - (cxusb_probe): - - codingstyle cleanups. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-08 05:10 pascoe - - * linux/drivers/media/dvb/dvb-usb/cxusb.c: (cxusb_rc_query): - * linux/drivers/media/dvb/dvb-usb/cxusb.h: - - - Add support for querying remote control receivers inside cxusb - devices. - - - Add keymap for the DViCO FusionHDTV DVB-T Dual Digital remote. - - Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au> - -2006-01-08 03:33 pascoe - - * linux/Documentation/video4linux/CARDLIST.cx88: - * linux/drivers/media/video/cx88/cx88-cards.c: (cx88_card_setup): - * linux/drivers/media/video/cx88/cx88-dvb.c: - (dvico_dual_demod_init), (dvb_register): - * linux/drivers/media/video/cx88/cx88.h: - - - Add support for the PCI half of the DViCO FusionHDTV DVB-T - Dual Digital. - - Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au> - -2006-01-08 03:14 pascoe - - * linux/drivers/media/dvb/dvb-usb/cxusb.c: - (cxusb_dee1601_demod_init), (cxusb_dee1601_tuner_attach), - (cxusb_dee1601_frontend_attach), (cxusb_probe): - * linux/drivers/media/dvb/dvb-usb/dvb-usb-firmware.c: - (dvb_usb_patch_dvico_firmware), (dvb_usb_download_firmware): - * linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h: - - - Patch the bluebird firmware with the correct "warm" USB firmware - IDs before downloading it to the device. - - - Add support for the USB half of the DViCO Dual Digital DVB-T. - - Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au> - -2006-01-08 01:13 rmcc - - * linux/drivers/media/video/saa7134/saa7134-core.c: (saa7134_irq), - (saa7134_hwinit2): - * linux/drivers/media/video/saa7134/saa7134-input.c: (build_key): - - - Separate GPIO16 and GPIO18 handling. Call IR-remote-GPIO handler - only if the GPIO IRQ is "owned" by it. Added infrastructure to branch - out to a future I2C-IR IRQ handler. - - - Enable only the one GPIO pin and edge to trigger an IRQ that - is wired as keyup/keydown mask. IRQ will only be generated for - an actual key-down event. - - - Put meaning to mystery keys. Change some key definitions to have - their functions match their labels better. Fix typos. - - - Added new table for the larger remote that comes with the LifeView - FlyDVB series. - - - In IRQ mode, signal key-down and then key-up straight in one go. - - Signed-off-by: Peter Missel <peter.missel@onlinehome.de> - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-07 21:28 mchehab - - * linux/drivers/media/video/bt832.c: (bt832_hexdump), (bt832_init), - (bt832_attach), (bt832_detach), (bt832_command): - * linux/drivers/media/video/ir-kbd-i2c.c: - * linux/drivers/media/video/msp3400-driver.c: - * linux/drivers/media/video/saa7134/saa6752hs.c: - (saa6752hs_attach): - * linux/drivers/media/video/tvaudio.c: - - some fixes from the previous patches - - printk replaced by v4l_ print macros on saa6752 and bt832 - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-07 20:12 mchehab - - * linux/drivers/media/dvb/cinergyT2/cinergyT2.c: - * linux/drivers/media/dvb/ttpci/budget.h: - * linux/drivers/media/video/bt832.c: - * linux/drivers/media/video/bttv-i2c.c: (attach_inform): - * linux/drivers/media/video/cs53l32a.c: (cs53l32a_attach): - * linux/drivers/media/video/cx25840/cx25840-core.c: - (cx25840_detect_client): - * linux/drivers/media/video/cx25840/cx25840.h: - * linux/drivers/media/video/cx88/Kconfig: - * linux/drivers/media/video/cx88/cx88-i2c.c: (attach_inform): - * linux/drivers/media/video/em28xx/em28xx-i2c.c: - * linux/drivers/media/video/ir-kbd-i2c.c: - * linux/drivers/media/video/msp3400-driver.c: - * linux/drivers/media/video/saa6588.c: - * linux/drivers/media/video/saa7115.c: (saa7115_attach): - * linux/drivers/media/video/saa711x.c: (saa711x_detect_client): - * linux/drivers/media/video/saa7127.c: (saa7127_attach): - * linux/drivers/media/video/saa7134/saa6752hs.c: - * linux/drivers/media/video/saa7134/saa7134-i2c.c: (attach_inform): - * linux/drivers/media/video/tda7432.c: - * linux/drivers/media/video/tda9875.c: - * linux/drivers/media/video/tda9887.c: - * linux/drivers/media/video/tuner-core.c: (set_type): - * linux/drivers/media/video/tvaudio.c: - * linux/drivers/media/video/tveeprom.c: (tveeprom_detect_client): - * linux/include/linux/i2c-id.h: - * linux/include/media/saa7146.h: - - Latest patch reverted, since __stringfy seems to be needed for - kernel < 2.6.15 - - Applied kernel I2C cleanups from Jean Delaware. - - driver names simplified to allow usage of newer printk macros - at v4l2-common.h - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-07 17:17 mchehab - - * linux/drivers/media/dvb/cinergyT2/cinergyT2.c: - * linux/drivers/media/dvb/ttpci/budget.h: - * linux/drivers/media/video/cx88/Kconfig: - * linux/include/linux/i2c-id.h: - * linux/include/media/saa7146.h: - - removed unneeded __stringify - - updated i2c-id.h - - kernel-sync - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-06 19:17 mchehab - - * linux/drivers/media/dvb/b2c2/flexcop-usb.c: - * linux/drivers/media/dvb/cinergyT2/cinergyT2.c: - * linux/drivers/media/dvb/dvb-usb/a800.c: - * linux/drivers/media/dvb/dvb-usb/cxusb.c: - * linux/drivers/media/dvb/dvb-usb/dibusb-mb.c: - * linux/drivers/media/dvb/dvb-usb/dibusb-mc.c: - * linux/drivers/media/dvb/dvb-usb/digitv.c: - * linux/drivers/media/dvb/dvb-usb/dtt200u.c: - * linux/drivers/media/dvb/dvb-usb/nova-t-usb2.c: - * linux/drivers/media/dvb/dvb-usb/umt-010.c: - * linux/drivers/media/dvb/dvb-usb/vp702x.c: - * linux/drivers/media/dvb/dvb-usb/vp7045.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - - Latest patch #ifs were wrong. fixing. - - kernel-sync. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-06 18:51 mchehab - - * linux/drivers/media/dvb/cinergyT2/cinergyT2.c: - * linux/drivers/media/dvb/dvb-usb/a800.c: - * linux/drivers/media/dvb/dvb-usb/cxusb.c: - * linux/drivers/media/dvb/dvb-usb/dibusb-mb.c: - * linux/drivers/media/dvb/dvb-usb/dibusb-mc.c: - * linux/drivers/media/dvb/dvb-usb/digitv.c: - * linux/drivers/media/dvb/dvb-usb/dtt200u.c: - * linux/drivers/media/dvb/dvb-usb/nova-t-usb2.c: - * linux/drivers/media/dvb/dvb-usb/umt-010.c: - * linux/drivers/media/dvb/dvb-usb/vp702x.c: - * linux/drivers/media/dvb/dvb-usb/vp7045.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - - USB: remove .owner field from struct usb_driver - - It is no longer needed, so let's remove it, saving a bit of memory. - - kernel-sync - - Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-05 20:55 mkrufky - - * linux/drivers/media/video/cx88/cx88-input.c: (cx88_ir_init): - - Both AverTV Studio 303 cards, #6 and #36 use the same remote - control programming. - - Signed-off-by: George Gazurkoff <gazurkoff@gmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-05 19:31 rmcc - - * v4l/scripts/insmod.sh: - - - insmod.sh, now with cx88-alsa goodness - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-05 15:43 rmcc - - * v4l/Makefile: - - - Fix module installation - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-05 04:13 rmcc - - * linux/drivers/media/video/cx88/cx88-alsa.c: - (_cx88_stop_audio_dma): - * v4l/Make.config: - * v4l/Makefile: - - - CONFIG_VIDEO_ALSA now encompasses both the SAA713x and CX88x modules, - and is enabled by default - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-05 03:27 rmcc - - * linux/drivers/media/video/cx88/cx88-alsa.c: - (_cx88_start_audio_dma), (_cx88_stop_audio_dma): - * linux/drivers/media/video/cx88/cx88-core.c: - (cx88_start_audio_dma): - * linux/drivers/media/video/cx88/cx88-tvaudio.c: - (set_audio_finish): - * v4l/Makefile: - - - (Temporary?) workaround for the conflict with existing cx88 audio - DMA calls - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-05 02:01 rmcc - - * linux/drivers/media/video/cx88/cx88-alsa.c: (cx8801_aud_irq): - - - Fix ugly double-spinlock bug - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-05 01:41 rmcc - - * linux/drivers/media/video/cx88/cx88-alsa.c: - (_cx88_start_audio_dma), (_cx88_stop_audio_dma), (cx8801_aud_irq), - (cx8801_irq), (dsp_buffer_free), (snd_card_cx88_runtime_free), - (snd_cx88_pcm_open), (snd_cx88_close), (snd_cx88_hw_params), - (snd_cx88_hw_free), (snd_cx88_prepare), (snd_cx88_card_trigger), - (snd_cx88_pointer), (snd_cx88_free), (snd_cx88_dev_free), - (snd_cx88_create), (cx88_audio_initdev), (cx88_audio_finidev), - (cx88_audio_fini): - - - Cleanup leftover code and debug - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-04 21:51 mchehab - - * linux/drivers/media/video/compat_ioctl32.c: (do_set_window): - - There is a bug in the ioctl translations from 32bit userspace - to 64bit kernelspace in do_set_window(). - - The video window (vw) should be passed to native_ioctl() - instead of the video clip. - - Signed-off-by: Guy Martin <gmsoft@tuxicoman.be> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-04 13:28 mkrufky - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - * linux/drivers/media/video/saa7134/saa7134.h: - - Add support for LifeView FlyDVB Trio. - - all analog inputs are supported and working, including FM radio - - TO DO: dvb & remote control - - Signed-off-by: Peter Missel <peter.missel@onlinehome.de> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-04 11:18 nshmyrev - - * linux/Documentation/video4linux/CARDLIST.cx88: - * linux/drivers/media/video/cx88/cx88-cards.c: - * linux/drivers/media/video/cx88/cx88-dvb.c: (dvb_register): - * linux/drivers/media/video/cx88/cx88.h: - - Add Kworld/Vstream Xpert DVB-T card with cx22702 tuner. - - Signed-off-by: Manenti Marco <marco_manenti@colman.it> - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2006-01-04 03:11 rmcc - - * linux/drivers/media/video/cx88/cx88-alsa.c: - * linux/drivers/media/video/cx88/cx88-core.c: - - - Got rid of the audio distortion by increasing the buffer size to - 4k - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-03 22:45 hverkuil - - * linux/drivers/media/video/cx25840/cx25840-core.c: (get_v4lctrl): - Fix signed/unsigned bug in brightness handling (set to 0 and 128 was - returned). - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-03 22:36 hverkuil - - * linux/drivers/media/video/cx25840/cx25840-core.c: (get_v4lctrl): - Fix signed/unsigned bug in hue handling (set to -127 and 129 was - returned). - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-03 16:30 mchehab - - * linux/drivers/media/video/cx88/cx88-alsa.c: (snd_cx88_hw_params): - - whitespace cleanups. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-03 16:28 mchehab - - * linux/drivers/media/video/saa7134/Kconfig: - - small cleanups - - Signed-off-by: Jean Delvare <khali@linux-fr.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-03 13:36 rmcc - - * linux/drivers/media/video/cx88/cx88-alsa.c: - (_cx88_start_audio_dma), (_cx88_stop_audio_dma), (cx8801_aud_irq), - (cx8801_irq), (dsp_buffer_free), (snd_cx88_pcm_open), - (snd_cx88_close), (snd_cx88_hw_params), (snd_cx88_hw_free), - (snd_cx88_prepare), (snd_cx88_card_trigger), (snd_cx88_pointer), - (snd_cx88_pcm), (snd_cx88_free), (snd_cx88_dev_free), - (snd_cx88_create), (cx88_audio_finidev), (cx88_audio_fini): - - - CX88 audio lives! - - Sound is still distorted, (some buzzing), but works - - Got rid of videobuf queues, now using a single risc databuffer - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2006-01-03 06:07 mkrufky - - * linux/Documentation/dvb/get_dvb_firmware: - * linux/drivers/media/dvb/frontends/lgdt330x.c: - - Add DViCO Bluebird firmware to dvb_get_firmware script, - for FusionHDTV USB devices. - - Use usb alt setting 0 for EP4 transfer (dvb-t), - - Use usb alt setting 7 for EP2 transfer (atsc) - - Added comment to lgdt330x.c to indicate support for - DViCO FusionHDTV5 USB Gold. - - Thanks to: Jeff Lee <JeffLee@dvico.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-03 05:58 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-tuner.c: (set_type): - Fix pvrusb2 bug that prevented compilation under anything older - than 2.6.13 (this was an oversight from yesterday's big I2C - change). - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-03 05:54 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-audio.c: - * v4l_experimental/pvrusb2/pvrusb2-demod.c: - * v4l_experimental/pvrusb2/pvrusb2-tuner.c: - * v4l_experimental/pvrusb2/pvrusb2-video-v4l.c: - - Cosmetic adjustments to permit compilation in older environments - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-03 05:50 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-hdw.c: - (pvr2_hdw_commit_ctl_internal): - -Fix problem with capture resolution being incorrectly set at - initialization for certain video standards. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-03 05:46 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-i2c-core.c: (pvr2_i2c_xfer): - - Implement some (normally disabled) debug code to assist with - chasing I2C adapter issues. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-03 04:01 mkrufky - - * linux/drivers/media/dvb/dvb-usb/cxusb.c: (cxusb_probe): - - renamed struct dvb_usb_properties from - cxusb_bluebird_atsc_properties to cxusb_bluebird_lgh064f_properties - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-03 03:08 endriss - - * linux/drivers/media/dvb/ttpci/av7110.c: (gpioirq) - - fixed debug output - - * linux/drivers/media/dvb/ttpci/av7110.c: (recover_arm), - (arm_thread), (restart_feeds), (av7110_fe_set_frontend), - (av7110_fe_diseqc_send_master_cmd), (av7110_fe_diseqc_send_burst), - (av7110_fe_set_tone), (av7110_fe_set_voltage), (dvb_s_recover), - (frontend_init): - * linux/drivers/media/dvb/ttpci/av7110.h: - * linux/drivers/media/dvb/ttpci/av7110_hw.c: (av7110_bootarm), - (__av7110_send_fw_cmd): - - improved recovery from ARM crash and crash detection - - Signed-off-by: Oliver Endriss <o.endriss@gmx.de> - -2006-01-02 23:56 hverkuil - - * linux/drivers/media/video/saa7115.c: (saa7115_command): - - Added VIDIOC_QUERYCTRL to saa7115. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-02 23:46 hverkuil - - * linux/drivers/media/video/cx25840/cx25840-audio.c: (get_volume), - (set_volume), (get_bass), (set_bass), (get_treble), (set_treble), - (get_balance), (set_balance), (get_mute), (set_mute): - * linux/drivers/media/video/cx25840/cx25840-core.c: (init_dll1), - (init_dll2), (cx25840_command): - * linux/drivers/media/video/cx25840/cx25840-firmware.c: - (set_i2c_delay), (start_fw_load), (end_fw_load), (check_fw_load), - (fw_write): - * linux/drivers/media/video/cx25840/cx25840-vbi.c: (odd_parity), - (decode_vps): - - Added VIDIOC_QUERYCTRL - - Removed unnecessary inlines. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-02 22:27 hverkuil - - * linux/drivers/media/video/cs53l32a.c: (cs53l32a_command), - (cs53l32a_attach): - * linux/drivers/media/video/cx25840/cx25840-core.c: (set_input), - (set_v4lctrl), (set_v4lfmt), (cx25840_command), - (cx25840_detect_client), (log_status): - * linux/drivers/media/video/cx25840/cx25840-firmware.c: - (check_fw_load), (fw_write), (cx25840_loadfw): - * linux/drivers/media/video/cx25840/cx25840.h: - * linux/drivers/media/video/msp3400-driver.c: - * linux/drivers/media/video/mt20xx.c: (mt2050_set_if_freq), - (microtune_init): - * linux/drivers/media/video/saa7115.c: - (saa7115_set_audio_clock_freq), (saa7115_set_v4lctrl), - (saa7115_set_v4lstd), (saa7115_log_status), (saa7115_set_v4lfmt), - (saa7115_command), (saa7115_attach): - * linux/drivers/media/video/saa7127.c: (saa7127_write), - (saa7127_set_vps), (saa7127_set_cc), (saa7127_set_xds), - (saa7127_set_wss), (saa7127_set_video_enable), (saa7127_set_std), - (saa7127_set_output_type), (saa7127_set_input_type), - (saa7127_command), (saa7127_attach): - * linux/drivers/media/video/tea5761.c: (set_radio_freq): - * linux/drivers/media/video/tea5767.c: (set_radio_freq): - * linux/drivers/media/video/tuner-core.c: (tuner_attach), - (tuner_command): - * linux/drivers/media/video/tvaudio.c: (chip_write), (chip_read), - (chip_read2), (chip_cmd), (chip_thread), (generic_checkmode), - (tda9840_getmode), (tda9873_getmode), (tda9873_setmode), - (tda9874a_setup), (tda9874a_getmode), (tda9874a_setmode), - (tda9874a_checkit), (ta8874z_getmode), (ta8874z_setmode), - (chip_attach), (chip_command): - * linux/drivers/media/video/tveeprom.c: - * linux/drivers/media/video/wm8775.c: (wm8775_write), - (wm8775_command), (wm8775_attach): - * linux/include/media/tuner.h: - * linux/include/media/v4l2-common.h: - - convert diagnostics over to the new v4l2-common.h macros. - - deprecated tuner_debug option, the new option is debug. - - renamed cx25840_debug to debug. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-02 18:15 hverkuil - - * linux/drivers/media/video/msp3400-driver.c: (msp_reset), - (msp_read), (msp_write), (msp_set_scart), (msp_set_mute), - (msp_set_audio), (msp_modus): - * linux/drivers/media/video/msp3400-kthreads.c: (msp3400c_setmode), - (msp3400c_setstereo), (msp3400c_print_mode), (autodetect_stereo), - (msp3400c_thread), (msp3410d_thread), (msp34xxg_set_source), - (msp34xxg_thread), (msp34xxg_detect_stereo): - * linux/drivers/media/video/msp3400.h: - * linux/include/media/v4l2-common.h: - - Added new v4l_err, v4l_warn, v4l_info and v4l_dbg macros to - v4l2-common.h for use in v4l-dvb i2c drivers. This ensures - a unique prefix for each device instance. - - At a later stage these macros may be reimplemented using the - device-generic macros from device.h. - - Converted the msp3400 driver to the new macros. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-02 17:20 hverkuil - - * linux/drivers/media/video/Makefile: - * linux/drivers/media/video/msp3400-driver.c: (msp_reset), - (msp_read_dem), (msp_read_dsp), (msp_write_dem), (msp_write_dsp), - (msp_set_scart), (msp_set_mute), (msp_set_audio), (msp_modus), - (msp_standard), (msp_setup_thread), (msp_wake_thread): - * linux/drivers/media/video/msp3400-kthreads.c: - (msp_standard_mode_name), (msp3400c_setcarrier), - (msp3400c_setmode), (msp3400c_best_video_sound), - (msp3400c_setstereo), (msp3400c_print_mode), (autodetect_stereo), - (watch_stereo), (msp3400c_thread), (msp3410d_thread), - (msp34xxg_set_source), (msp34xxg_reset), (msp34xxg_thread), - (msp34xxg_detect_stereo), (msp34xxg_set_audmode): - * linux/drivers/media/video/msp3400.c: - * linux/drivers/media/video/msp3400.h: - * v4l/Makefile: - - Split msp3400.c into msp3400-driver.c and msp3400-kthreads.c. - - Removed experimental DFPREG ioctls. If this is really needed one - day then it should be implemented using VIDIOC_G/S_REGISTER. - - Added missing BALANCE control info for VIDIOC_QUERYCTRL. - - Still more cleanup, clarified some kernel messages. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-01 22:35 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-audio.c: - (pvr2_i2c_msp3400_setup): - * v4l_experimental/pvrusb2/pvrusb2-video-v4l.c: - (pvr2_i2c_decoder_v4l_setup): - - -Kill pvrusb2 initialization bug involving saa711x and msp3400 - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-01 19:25 mkrufky - - * linux/drivers/media/dvb/dvb-usb/cxusb.c: - (cxusb_fmd1216me_tuner_attach), (cxusb_lgh064f_tuner_attach): - - Some cleanups: - - Add space after , in memcpy() - - Initialize bpll array before memcpy() to pll_init. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-01 18:44 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-audio.c: - * v4l_experimental/pvrusb2/pvrusb2-demod.c: - * v4l_experimental/pvrusb2/pvrusb2-tuner.c: - - -Patch pvrusb2 to compile again with centralized ioctl definitions - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-01 18:06 hverkuil - - * linux/drivers/media/video/msp3400.c: (msp_reset), (msp_read), - (msp_write), (msp_set_scart), (msp_set_mute), (msp_set_audio), - (msp3400c_setmode), (msp3400c_print_mode), - (msp34xxg_write_dfp_with_default): - Continue cleanup effort: - - more cosmetic changes - - combine volume, balance, bass and treble into one audio - function. Revert old 2.4 code that crept in. - - print internal ioctls using new debug function. - - marked all msp3400c (aka manual) functions as such. - - removed some unused data structures. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-01 17:25 mchehab - - * test/Makefile: - * test/ioctl-test.c: (main): - - Added a test area to CVS. - - Included a small dumb app to test all ioctls. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-01 16:59 mchehab - - * linux/drivers/media/video/bttv-cards.c: - * linux/drivers/media/video/bttv-driver.c: (bttv_do_ioctl): - * linux/drivers/media/video/bttv-i2c.c: - * linux/drivers/media/video/cx88/cx88-blackbird.c: (mpeg_do_ioctl): - * linux/drivers/media/video/cx88/cx88-core.c: - * linux/drivers/media/video/cx88/cx88-dvb.c: - * linux/drivers/media/video/cx88/cx88-i2c.c: - * linux/drivers/media/video/cx88/cx88-video.c: (video_do_ioctl), - (cx88_do_ioctl), (radio_do_ioctl): - * linux/drivers/media/video/cx88/cx88.h: - * linux/drivers/media/video/em28xx/em28xx-core.c: - * linux/drivers/media/video/em28xx/em28xx-i2c.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/media/video/em28xx/em28xx.h: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - * linux/drivers/media/video/saa7134/saa7134-core.c: - * linux/drivers/media/video/saa7134/saa7134-dvb.c: - * linux/drivers/media/video/saa7134/saa7134-empress.c: - (ts_do_ioctl): - * linux/drivers/media/video/saa7134/saa7134-i2c.c: - * linux/drivers/media/video/saa7134/saa7134-oss.c: - (saa7134_oss_print_ioctl), (dsp_ioctl), (mixer_ioctl): - * linux/drivers/media/video/saa7134/saa7134-video.c: - (video_do_ioctl), (radio_do_ioctl): - * linux/drivers/media/video/saa7134/saa7134.h: - * linux/drivers/media/video/tda9887.c: - * linux/drivers/media/video/tuner-core.c: (tuner_command): - * linux/drivers/media/video/tvaudio.c: - * linux/drivers/media/video/v4l2-common.c: (v4l_printk_ioctl): - * linux/include/linux/video_decoder.h: - * linux/include/linux/videodev2.h: - * linux/include/media/audiochip.h: - * linux/include/media/saa6752hs.h: - * linux/include/media/tuner.h: - * linux/include/media/v4l2-common.h: - - ioctls cleanups. - - Now, all internal ioctls are at v4l2-common.h - - removed unused ioctl at saa6752hs.h - - all debug ioctl code moved to v4l2-common.c - - removed duplicated stuff from other cards - - From: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2006-01-01 17:05 mkrufky - - * linux/drivers/media/dvb/dvb-usb/cxusb.c: - (cxusb_lgdt330x_frontend_attach): - - Now using firmware "dvb-usb-bluebird-01.fw", - with combined support for atsc and dvb-t Bluebird models. - - Use usb alt setting 0 for EP4 transfer (dvb-t), - - Use usb alt setting 7 for EP2 transfer (atsc) */ - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-01 16:36 mkrufky - - * v4l/scripts/insmod.sh: - - added saa7127 msp3400 tvp5150 to insmod.sh script. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2006-01-01 16:14 mkrufky - - * linux/drivers/media/dvb/dvb-usb/cxusb.c: - (cxusb_fmd1216me_tuner_attach), (cxusb_lgh064f_tuner_attach), - (cxusb_cx22702_frontend_attach), (cxusb_lgdt330x_frontend_attach), - (cxusb_probe): - * linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h: - - Add Bluebird ATSC support to the cxusb driver, - using dvb-usb-bluebird-atsc-01.fw firmware. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Patrick Boettcher <pb@linuxtv.org> - -2006-01-01 13:53 hverkuil - - * linux/Documentation/video4linux/cx2341x/fw-decoder-api.txt: - * linux/Documentation/video4linux/cx2341x/fw-encoder-api.txt: - * linux/drivers/media/video/cx2341x.h: - - Improve consistency between similar decoder and encoder API names. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-01 13:18 hverkuil - - * linux/Documentation/video4linux/cx2341x/fw-decoder-api.txt: - * linux/Documentation/video4linux/cx2341x/fw-encoder-api.txt: - * linux/Documentation/video4linux/cx2341x/fw-osd-api.txt: - * linux/drivers/media/video/cx2341x.h: - - Made API names more consistent. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2006-01-01 08:17 mcisely - - * v4l_experimental/pvrusb2/Kbuild: - * v4l_experimental/pvrusb2/README: - * v4l_experimental/pvrusb2/pvrusb2-audio.c: (set_stereo), - (check_stereo), (msp3400_check), (msp3400_update), - (get_audio_status), (pvr2_msp3400_detach), - (pvr2_i2c_msp3400_setup): - * v4l_experimental/pvrusb2/pvrusb2-audio.h: - * v4l_experimental/pvrusb2/pvrusb2-context.c: - (pvr2_context_trigger_poll), (pvr2_context_poll), - (pvr2_context_setup), (pvr2_context_create), (pvr2_context_exit): - * v4l_experimental/pvrusb2/pvrusb2-context.h: - * v4l_experimental/pvrusb2/pvrusb2-debug.h: - * v4l_experimental/pvrusb2/pvrusb2-debugifc.c: - (pvr2_debugifc_print_info): - * v4l_experimental/pvrusb2/pvrusb2-demod.c: (set_config), - (demod_check), (demod_update), (demod_detach), - (pvr2_i2c_demod_setup): - * v4l_experimental/pvrusb2/pvrusb2-demod.h: - * v4l_experimental/pvrusb2/pvrusb2-encoder.c: - * v4l_experimental/pvrusb2/pvrusb2-hdw-internal.h: - * v4l_experimental/pvrusb2/pvrusb2-hdw.c: - (pvr2_hdw_subsys_bit_chg_no_lock), (get_default_tuner_type), - (pvr2_hdw_setup_low), (pvr2_hdw_destroy), - (pvr2_hdw_commit_ctl_internal), (pvr2_hdw_poll), - (pvr2_hdw_setup_poll_trigger), (pvr2_hdw_poll_trigger_unlocked), - (pvr2_hdw_poll_trigger), (pvr2_hdw_get_signal_status_internal): - * v4l_experimental/pvrusb2/pvrusb2-hdw.h: - * v4l_experimental/pvrusb2/pvrusb2-i2c-chips-v4l2.c: - (pvr2_i2c_probe), (pvr2_i2c_get_op): - * v4l_experimental/pvrusb2/pvrusb2-i2c-cmd-v4l2.c: (set_standard), - (check_standard), (set_bcsh), (check_bcsh), (set_volume), - (check_volume), (set_frequency), (check_frequency), (set_size), - (check_size): - * v4l_experimental/pvrusb2/pvrusb2-i2c-cmd-v4l2.h: - * v4l_experimental/pvrusb2/pvrusb2-i2c-core.c: (pvr2_i2c_write), - (pvr2_i2c_read), (pvr2_i2c_xfer), (pvr2_i2c_control), - (pvr2_i2c_functionality), (pvr2_i2c_core_singleton), - (pvr2_i2c_client_cmd), (pvr2_i2c_core_cmd), (handler_check), - (pvr2_i2c_core_sync), (pvr2_i2c_core_check_stale), - (pvr2_i2c_client_describe), (pvr2_i2c_report), - (pvr2_i2c_attach_inform), (pvr2_i2c_detach_inform), (do_i2c_scan), - (pvr2_i2c_core_init), (pvr2_i2c_core_done): - * v4l_experimental/pvrusb2/pvrusb2-i2c-core.h: - * v4l_experimental/pvrusb2/pvrusb2-i2c.c: - * v4l_experimental/pvrusb2/pvrusb2-i2c.h: - * v4l_experimental/pvrusb2/pvrusb2-main.c: - * v4l_experimental/pvrusb2/pvrusb2-tuner.c: (set_type), - (tuner_check), (tuner_update), (pvr2_tuner_detach), - (pvr2_i2c_tuner_setup): - * v4l_experimental/pvrusb2/pvrusb2-tuner.h: - * v4l_experimental/pvrusb2/pvrusb2-v4l2.c: - (pvr2_v4l2_destroy_no_lock), (pvr2_v4l2_release): - * v4l_experimental/pvrusb2/pvrusb2-version.h: - * v4l_experimental/pvrusb2/pvrusb2-video-v4l.c: (set_input), - (check_input), (set_audio), (check_audio), (decoder_detach), - (decoder_check), (decoder_update), (decoder_detect), - (decoder_enable), (decoder_is_tuned), (pvr2_i2c_decoder_v4l_setup): - * v4l_experimental/pvrusb2/pvrusb2-video-v4l.h: - * v4l_experimental/pvrusb2/pvrusb2-video.c: - * v4l_experimental/pvrusb2/pvrusb2-video.h: - - - New mechanism for handling all the I2C support modules. - Broadcast is used for V4L2 commands to the I2C clients, - identification and adoption of attached I2C clients is - centralized to a single place, on-the-fly update of reattached - modules is handled uniformly, and code overall is reworked to - hopefully improve maintainability and remove a lot of the uglier - hackish aspects of the previous implementation. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2006-01-01 01:12 hverkuil - - * linux/Documentation/video4linux/cx2341x/fw-calling.txt: - * linux/Documentation/video4linux/cx2341x/fw-decoder-api.txt: - * linux/Documentation/video4linux/cx2341x/fw-dma.txt: - * linux/Documentation/video4linux/cx2341x/fw-encoder-api.txt: - * linux/Documentation/video4linux/cx2341x/fw-memory.txt: - * linux/Documentation/video4linux/cx2341x/fw-osd-api.txt: - * linux/Documentation/video4linux/cx2341x/fw-upload.txt: - * linux/drivers/media/video/cx2341x.h: - - Added cx23415/6 firmware documentation from the ivtv project. - - Added header containing the firmware API commands for use - by all projects that use the cx2341x. First step towards a - shared cx2341x driver. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-31 18:26 hverkuil - - * linux/drivers/media/video/msp3400.c: (msp_reset), (msp_read), - (msp_read_dem), (msp_read_dsp), (msp_write), (msp_write_dem), - (msp_write_dsp), (msp_set_scart), (msp3400c_setcarrier), - (msp_set_volume), (msp_set_bass), (msp_set_treble), - (msp3400c_setmode), (msp3400c_best_video_sound), - (msp3400c_setstereo), (msp3400c_print_mode), - (msp3400c_restore_dfp), (msp_write_dfp_with_default), - (autodetect_stereo): - Step 1 of the msp3400.c cleanup. - Most changes are all cosmetic (moved code around, renamed functions - and variables). - New additions: - - VIDIOC_LOG_STATUS for debugging. - - More user friendly messages on driver load. - - 'simple' renamed to 'autodetect' - - 'simpler' renamed to 'autoselect' - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-30 06:18 rmcc - - * linux/drivers/media/video/cx88/cx88-alsa.c: - (_cx88_start_audio_dma), (cx8801_irq), (buffer_prepare), - (buffer_queue), (dsp_buffer_init), (dsp_buffer_free), - (snd_cx88_hw_params), (snd_cx88_hw_free), (snd_cx88_card_trigger), - (snd_cx88_create): - - Yet more changes to initialization code. Still no IRQ activity other - than the init... - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-29 23:46 hverkuil - - * linux/drivers/media/video/saa7115.c: - - Add missing audiochip.h include. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-29 21:19 hverkuil - - * linux/drivers/media/video/cx25840/cx25840-core.c: (set_v4lctrl), - (cx25840_command): - * linux/drivers/media/video/cx25840/cx25840.h: - * linux/drivers/media/video/saa7115.c: (saa7115_set_v4lctrl), - (saa7115_command), (saa7115_attach): - - Detect when AUDC_SET_RADIO is called. - - When in radio mode ignore VIDIOC_G_TUNER. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-29 21:16 hverkuil - - * linux/drivers/media/video/tvaudio.c: (chip_command): - - When in radio mode don't do anything with VIDIOC_G_TUNER. - Allow other devices to fill this. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-29 17:47 hverkuil - - * linux/drivers/media/video/saa7115.c: (saa7115_set_v4lstd): - - Don't reprogram the video standard if the new standard - equals the old standard. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-28 19:56 hverkuil - - * linux/drivers/media/video/tvaudio.c: (chip_thread), - (chip_command): - - Use more general form for debug messages that works for - both 2.4 and 2.6. - - Add V4L2 commands VIDIOC_S_TUNER, VIDIOC_G_TUNER, - VIDIOC_S_STD and VIDIOC_S_FREQUENCY. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-28 16:24 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-video-v4l.c: - (pvr2_decoder_v4l_set_audio): - - - Adjust pvrusb2 driver to account for changed - VIDIOC_INT_AUDIO_CLOCK_FREQ API - - Signed-off-by: Mike Isely <isely@pobox.com> - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-28 16:17 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-hdw.h: - - Prioritize PAL_BG over SECAM_L when we have to choose. - - Signed-off-by: Mike Isely <isely@pobox.com> - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-28 14:55 hverkuil - - * linux/drivers/media/video/tea5767.c: (tea5767_signal): - - Move signal strength level to the 0-65535 range as per - V4L2 spec. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-28 14:41 hverkuil - - * linux/drivers/media/video/cx25840/cx25840-audio.c: - (set_audclk_freq), (cx25840_audio_set_path), (set_mute), - (cx25840_audio): - * linux/drivers/media/video/cx25840/cx25840-core.c: - (cx25840_initialize), (input_change), (set_input), (set_v4lctrl), - (get_v4lctrl), (cx25840_command), (cx25840_detect_client), - (log_status): - * linux/drivers/media/video/cx25840/cx25840.h: - - Added VIDIOC_S_AUDIO to set the audio inputs separately. - - Removed AUDC_SET_INPUT. - - Made the video inputs much more general. - - Removed cardtype CID and replaced with a CID to enable - the PVR150 workaround. The cardtype is no longer necessary - with the general video input change. - - Update VIDIOC_LOG_STATUS output to show the video and - audio inputs separately. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-28 14:40 hverkuil - - * linux/drivers/media/video/saa7115.c: (saa7115_log_status): - - Add selected input to VIDIOC_LOG_STATUS output. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-28 14:38 hverkuil - - * linux/drivers/media/video/wm8775.c: (wm8775_command): - - Replace AUDC_SET_INPUT with VIDIOC_S_AUDIO. - - Added V4L2_CID_AUDIO_MUTE. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-28 14:18 hverkuil - - * linux/drivers/media/video/cs53l32a.c: (cs53l32a_command): - - Replace AUDC_SET_INPUT with VIDIOC_S_AUDIO. - - Added V4L2_CID_AUDIO_MUTE. - - Minimum volume is -96 dB, not -90. - - Show volume in VIDIOC_LOG_STATUS. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-28 12:51 mchehab - - * linux/include/media/tuner.h: - - Added some comments about multiple tuner support. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-27 23:42 mchehab - - * linux/drivers/media/video/saa7134/Kconfig: - - Fixes Warning! Found recursive dependency: - VIDEO_SAA7134_ALSA VIDEO_SAA7134_OSS VIDEO_SAA7134_ALSA - - Thanks-to: Jean Delvare <khali@linux-fr.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-27 13:14 mkrufky - - * linux/drivers/media/dvb/frontends/Kconfig: - - add firmware instructions for nxt2002 and nxt2004 - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-27 13:04 mkrufky - - * linux/Documentation/dvb/avermedia.txt: - * linux/Documentation/dvb/get_dvb_firmware: - * linux/Documentation/dvb/ttusb-dec.txt: - * linux/drivers/media/dvb/frontends/Kconfig: - * linux/drivers/media/dvb/frontends/nxt2002.c: - * linux/drivers/media/dvb/frontends/or51211.c: - * linux/drivers/media/dvb/frontends/sp8870.c: - * linux/drivers/media/dvb/frontends/sp887x.c: - * linux/drivers/media/dvb/frontends/tda1004x.c: - * linux/drivers/media/dvb/ttpci/Kconfig: - * linux/drivers/media/dvb/ttpci/av7110.c: (get_firmware): - * linux/drivers/media/dvb/ttusb-dec/Kconfig: - - make the firmware dir documentation and comments consistent in the v4l-dvb tree. - - Signed-off-by: Ville Skytt <ville.skytta@iki.fi> - -2005-12-27 11:15 mchehab - - * v4l/scripts/tuner.pl: - - Script fixed to work properly after tuner-simple.c changes. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-27 04:24 mkrufky - - * linux/drivers/media/video/tuner-simple.c: (default_set_tv_freq): - - reorganize tuner-simple threshold structure. - - create an array containing frequency threshold and control byte. - - allows for an arbitrary amount of - frequency ranges to be set, like dvb-pll. - - improves code readability. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-27 00:40 mchehab - - * linux/drivers/media/dvb/bt8xx/dst_ca.c: (ca_send_message): - - dst_ca __user annotations, portability fixes - - Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> - Signed-off-by: Linus Torvalds <torvalds@osdl.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-26 19:54 mkrufky - - * v4l/scripts/insmod.sh: - - add compat_ioctl32.ko to insmod.sh - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-26 18:18 mchehab - - * v4l/scripts/gentree.pl: - - Fixed some errors at gentree parsing. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-26 15:11 mchehab - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - * linux/drivers/media/video/saa7134/saa7134-oss.c: - - Make late module load fix looking the same as kernel version. - - kernel-sync. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-26 13:57 mchehab - - * linux/drivers/media/video/tvp5150.c: (tvp5150_command): - * linux/include/linux/i2c-id.h: - * linux/drivers/media/video/Kconfig: - - Included advanced debug option to tvp5150.c - - Now, advanced debug info is the first item at V4L menu. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-26 13:43 mchehab - - * linux/drivers/media/video/em28xx/em28xx-cards.c: - (em28xx_card_setup): - * linux/drivers/media/video/em28xx/em28xx-video.c: (video_mux): - * linux/drivers/media/video/em28xx/em28xx.h: - * linux/drivers/media/video/msp3400.c: - * linux/include/linux/videodev2.h: - * linux/include/media/v4l2-common.h: - - Created a new ioctl to control I2S speed. Old calls to an - inadequate V4L2 API replaced. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-25 22:32 mchehab - - * linux/drivers/media/video/tvp5150.c: (tvp5150_read), - (tvp5150_write), (tvp5150_write_inittab), (tvp5150_vdp_init), - (tvp5150_set_std), (tvp5150_reset), (tvp5150_command), - (tvp5150_detect_client), (tvp5150_attach_adapter), - (tvp5150_detach_client): - - Now reset do init tvp5150 registers to its default. - - Debug messages improved. - - Implemented video standard selection function. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-25 19:03 mkrufky - - * linux/drivers/media/video/bttvp.h: - * linux/drivers/media/video/cs53l32a.c: - * linux/drivers/media/video/cx25840/cx25840-audio.c: - * linux/drivers/media/video/cx25840/cx25840-core.c: - * linux/drivers/media/video/cx88/cx88-i2c.c: - * linux/drivers/media/video/cx88/cx88-vp3054-i2c.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/media/video/msp3400.c: - * linux/drivers/media/video/mt20xx.c: - * linux/drivers/media/video/saa6588.c: - * linux/drivers/media/video/saa7115.c: - * linux/drivers/media/video/saa711x.c: - * linux/drivers/media/video/saa7127.c: - * linux/drivers/media/video/saa7134/saa6752hs.c: - * linux/drivers/media/video/saa7134/saa7134.h: - * linux/drivers/media/video/tda8290.c: - * linux/drivers/media/video/tda9887.c: - * linux/drivers/media/video/tea5767.c: - * linux/drivers/media/video/tuner-core.c: - * linux/drivers/media/video/tuner-simple.c: - * linux/drivers/media/video/tvaudio.c: - * linux/drivers/media/video/tvmixer.c: - * linux/drivers/media/video/tvp5150.c: - * linux/drivers/media/video/wm8775.c: - - replace <media/i2c-compat.h> with "i2c-compat.h" - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-25 16:43 mkrufky - - * v4l_experimental/v3tv/vpx3224.c: - - fix build for 2.6.14, based on: - http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9fc6adfa9adf2be84119a3c2592287f33bd1dff2 - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-25 16:33 mkrufky - - * v4l_experimental/v3tv/vpx3224-proc.c: (vpx3224_partnum), - (vpx3224_sync_slicer), (vpx3224_bit_slicer), - (vpx3224_dump_register), (vpx3224_init_proc), (vpx3224_del_proc): - * v4l_experimental/v3tv/vpx3224.c: (vpx3224_write), (vpx3224_read), - (vpx3224_fp_status), (vpx3224_fp_write), (vpx3224_fp_read), - (vpx3224_get_status), (vpx3224_auto_norm), (vpx3224_set_norm), - (vpx3224_set_input), (vpx3224_set_picture), - (vpx3224_check_partnum), (vpx3224_command), - (vpx3224_detach_client), (vpx3224_detect_client): - - drop i2c_clientname() - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-25 16:31 mkrufky - - * v4l_experimental/v3tv/vpx3224.c: (vpx3224_attach_adapter): - - remove I2C_ALGO_BIT - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-25 16:25 mkrufky - - * v4l_experimental/v3tv/Kbuild: - * v4l_experimental/v3tv/Kconfig: - * v4l_experimental/v3tv/Makefile: - - Add v3tv experimental build environment, - based on current pvrusb2 setup - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-25 16:18 mkrufky - - * v4l_experimental/v3tv/i2c-voodoo3.c: (config_v3), - (i2c_voodoo3_init), (i2c_voodoo3_exit): - - Merge in changes from V3TV driver from - http://www.gilfillan.org/v3tv/v3tv-v4l2/ - - * v4l_experimental/v3tv/v3tv.c: (v3tv_regwrite), (v3tv_regread), - (uvirt_to_kva), (kvirt_to_pa), (rvmalloc), (do_mask), (do_value), - (v3tv_conf), (v3tv_get_adapter), (v3tv_i2c_setup), - (v3tv_set_chromakey), (do_fraction), (v3tv_calc_scale), - (v3tv_update_overlay_setup), (v3tv_set_overlay), - (v3tv_overlay_setup), (v3tv_overlay), (v3tv_MakeRoom), - (v3tv_2dreg), (v3tv_capture_frame), (fbuffer_alloc), - (do_voodoo_mmap), (get_control), (set_control), (i2c_vidiocschan), - (v3tv_radio_do_ioctl), (v3tv_radio_ioctl), (v3tv_radio_open), - (v3tv_radio_release), (v3tv_irq_printk), (v3tv_video_irq), - (v3tv_set_palette), (v3tv_video_open), (v3tv_video_release), - (v3tv_video_read), (bttv_read), (v3tv_voodoo_mmap), - (v3tv_video_do_ioctl), (v3tv_video_ioctl), (v3tv_unregister_video), - (v3tv_register_video), (v3tv_video_init), (v3tv_video_cleanup), - (v3tv_probe), (v3tv_cleanup_module), (v3tv_init_module): - * v4l_experimental/v3tv/vpx3224-proc.c: (vpx3224_partnum), - (vpx3224_output), (vpx3224_sync_slicer), (vpx3224_bit_slicer), - (vpx3224_byte_slicer), (vpx3224_sdt_select), (vpx3224_color_proc), - (vpx3224_dump_register), (vpx3224_read_regs), (vpx3224_init_proc), - (vpx3224_del_proc): - * v4l_experimental/v3tv/vpx3224.c: (vpx3224_write), (vpx3224_read), - (vpx3224_write_block), (vpx3224_fp_status), (vpx3224_fp_write), - (vpx3224_fp_read), (vpx3224_write_fp_block), (vpx3224_get_status), - (vpx3224_auto_norm), (vpx3224_set_norm), (vpx3224_set_input), - (vpx3224_set_picture), (vpx3224_set_window), (vpx3224_init_client), - (vpx3224_check_partnum), (vpx3224_command), - (vpx3224_attach_adapter), (vpx3224_detach_client), - (vpx3224_detect_client), (vpx3224_exit), (vpx3224_init): - - Merge V3TV driver from http://www.gilfillan.org/v3tv/v3tv-v4l2/ - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-25 16:07 mkrufky - - * v4l_experimental/v3tv/i2c-voodoo3.c: (bit_vooi2c_setscl), - (bit_vooi2c_setsda), (bit_vooi2c_getscl), (bit_vooi2c_getsda), - (bit_vooddc_setscl), (bit_vooddc_setsda), (bit_vooddc_getscl), - (bit_vooddc_getsda), (config_v3), (voodoo3_probe), - (voodoo3_remove), (i2c_voodoo3_init), (i2c_voodoo3_exit): - - imported from linux-2.6.15-rc7/drivers/i2c/busses/i2c-voodoo3.c - - This will stay in experimental until the - V3TV driver is ready for inclusion. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-24 03:10 rmcc - - * linux/drivers/media/video/cx88/cx88-alsa.c: (cx8801_timeout), - (cx8801_aud_irq), (cx8801_irq), (buffer_queue), (dsp_buffer_init), - (snd_cx88_hw_params), (snd_cx88_prepare), (snd_cx88_card_trigger), - (cx88_audio_finidev): - - - more changes to the buffer code. Looks like it initializes completely - now - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-24 02:52 mkrufky - - * v4l/Makefile: - * v4l/scripts/insmod.sh: - - cx88-dvb.ko depends on cx88-vp3054-i2c.ko - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-23 16:22 mkrufky - - * v4l/Makefile: - * v4l/insmod.sh: - - Moved insmod.sh into v4l/scripts dir - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-23 12:48 mchehab - - * linux/Documentation/video4linux/CARDLIST.cx88: - * linux/drivers/media/video/cx88/Makefile: - * linux/drivers/media/video/cx88/cx88-cards.c: (cx88_card_setup): - * linux/drivers/media/video/cx88/cx88-dvb.c: - (generic_mt352_demod_init), (philips_fmd1216_pll_init), - (dntv_live_dvbt_pro_pll_set), (dvb_register), (dvb_probe), - (dvb_remove): - * linux/drivers/media/video/cx88/cx88-input.c: (cx88_ir_init), - (cx88_ir_fini), (cx88_ir_irq): - * linux/drivers/media/video/cx88/cx88.h: - * v4l/Makefile: - - - Added support for VP-3054 (aka DigitalNow DNTV Live! DVB-T Pro!). - This board has a secondary I2C bus and remote control. - - * linux/drivers/media/video/cx88/cx88-vp3054-i2c.c: - * linux/drivers/media/video/cx88/cx88-vp3054-i2c.h: - - Newer module to handle vp3054 secondary I2C bus. - - Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-22 20:14 mkrufky - - * v4l/Make.config: - - enable build of dvb-kernel modules in 2.6.10 and 2.6.11. - This might also work for 2.6.9 and earlier, - but I haven't been able to test it yet. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-22 19:03 mkrufky - - * linux/drivers/media/video/videodev.c: (show_dev), - (video_release), (video_register_device): - - fixed videodev.c broken backwards compat for kernels < 2.6.12 - - minor whitespace cleanups - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-22 16:14 mkrufky - - * v4l/Makefile: - * v4l/insmod.sh: - - Added command, 'make reload' - removes modules and re-inserts them. - - Change console output to indicate that both v4l and dvb - modules are being loaded/unloaded. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-22 15:39 rmcc - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - - - The newer revision of saa7134 #58 has a new ID (and a tda8725a - instead of a tda8275) - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-22 15:25 mkrufky - - * v4l/Makefile: - - make [insmod,load] will insert the modules into the kernel - without the need to install them. - - make [rmmod,unload] will unload the modules from the kernel. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-22 13:43 hverkuil - - * linux/drivers/media/video/cx25840/cx25840-audio.c: - (set_audclk_freq), (cx25840_audio): - * linux/drivers/media/video/cx25840/cx25840-core.c: - (cx25840_detect_client), (log_status): - * linux/drivers/media/video/cx25840/cx25840.h: - * linux/drivers/media/video/saa7115.c: - (saa7115_set_audio_clock_freq), (saa7115_log_status), - (saa7115_command), (saa7115_attach): - * linux/include/media/v4l2-common.h: - - - Calculate the audio master clock registers from the actual - frequencies. This simplifies the code and it also prepares - for adding CGC2 support. - - VIDIOC_INT_AUDIO_CLOCK_FREQ now receives an u32 instead of - an enum. It is more generic and actually easier to implement. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-22 07:43 nshmyrev - - * linux/drivers/media/video/saa7134/saa7134-cards.c: - (saa7134_board_init1): - * linux/drivers/media/video/saa7134/saa7134-input.c: - (saa7134_input_init1): - - Add remote for Compro Videomate Gold+ Pal version. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-12-22 03:33 mkrufky - - * v4l/insmod.sh: - - added video4linux modules to insmod.sh script - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-21 22:43 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - * linux/drivers/media/video/saa7134/saa7134-oss.c: - - - Changed saa7134 DMA sound modules to late_initcall() to - prevent oops-on-boot in static kernels. - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-21 05:57 mkrufky - - * v4l/insmod.sh: - - added sp887x or51211 and or51132 to insmod.sh script - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-21 05:47 mkrufky - - * v4l/insmod.sh: - - fixed errors in "insmod.sh debug" - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-21 05:28 mkrufky - - * v4l/insmod.sh: - - use v4l cvs modules instead of kernel modules - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-21 05:25 mkrufky - - * v4l/insmod.sh: - - add cx24123.ko frontend module to insmod.sh script - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-21 05:21 mkrufky - - * v4l/insmod.sh: - - import insmod.sh script from dvb kernel cvs - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-20 19:48 rmcc - - * linux/drivers/media/video/saa7134/Kconfig: - * linux/drivers/media/video/saa7134/Makefile: - - - Split saa7134 dma sound modules from main saa7134 in kernel - build options. - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-20 17:23 mkrufky - - * linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c: - (frontend_init), (dvb_bt8xx_probe): - - Remove #ifdef BTTV_BOARD_TWINHAN_VP3021 - - As far back as the video4linux cvs repository goes, there is no - mention of BTTV_TWINHAN_VP3021. It seems that this was done for - the sake of backwards compatability with some older v4l, but - this can no longer be necessary due to the v4l/dvb cvs merger, - nor should this have ever existed in the upstream kernel. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Acked-by: Manu Abraham <manu@linuxtv.org> - -2005-12-20 17:05 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_alsa_init), (saa7134_alsa_exit): - * linux/drivers/media/video/saa7134/saa7134-oss.c: - (saa7134_oss_init), (saa7134_oss_exit): - - - Fixed the saa7134 hotplug notifiers to prevent collisions between - ALSA and OSS - - Prevent ALSA or OSS from loading if the other is present. - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-20 15:54 mkrufky - - * linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c: - (frontend_init), (dvb_bt8xx_probe): - - Removed some unneeded #ifdef's - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-20 10:43 trafford - - * linux/drivers/media/video/cx25840/cx25840-firmware.c: (fw_write): - - In the rare event that a 333MHz i2c firmware load fails after - writing some data, this fix makes the driver reset the DL_ADDR - registers to the proper values before continuing on with 100MHz - transfers. - - Signed-off-by: Tyler Trafford <tatrafford@comcast.net> - -2005-12-20 07:50 mkrufky - - * linux/include/media/tuner.h: - - update comments to indicate which - tuners are supported by TUNER_THOMSON_DTT761X - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-20 07:25 mkrufky - - * linux/Documentation/video4linux/CARDLIST.tuner: - * linux/drivers/media/dvb/frontends/dvb-pll.c: - * linux/drivers/media/dvb/frontends/dvb-pll.h: - * linux/drivers/media/video/cx88/cx88-cards.c: - * linux/drivers/media/video/cx88/cx88-dvb.c: (dvb_register): - * linux/drivers/media/video/tuner-simple.c: - * linux/include/media/tuner.h: - - corrected Thomson DTT 7611 tuner programming, based on spec sheet - - renamed to Thomson DTT 761x - - applies to DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A - (DTT 7610 is similar, but slightly different programming) - - corrected frequency ranges for analog and digital modes - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-19 15:52 hverkuil - - * linux/drivers/media/common/saa7146_hlp.c: (saa7146_set_position): - - Add the fix for the 64-bit compile warning (again). This time with - comments and checked by Johannes Stezenbach. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-19 09:28 hverkuil - - * linux/drivers/media/common/saa7146_hlp.c: (saa7146_set_position): - * linux/drivers/media/dvb/dvb-core/dvb_frontend.c: - (dvb_frontend_ioctl): - * linux/drivers/media/dvb/dvb-core/dvb_frontend.h: - * linux/drivers/media/dvb/dvb-core/dvb_net.c: - * linux/drivers/media/dvb/frontends/stv0299.c: - (stv0299_send_legacy_dish_cmd): - * linux/drivers/media/dvb/ttpci/av7110.c: - (av7110_fe_dishnetwork_send_legacy_command): - * linux/drivers/media/dvb/ttpci/av7110.h: - * linux/drivers/media/dvb/ttpci/budget.c: - (lnbp21_enable_high_lnb_voltage): - - - Reverted objectionable fix in saa7146_hlp.c - - Merged in improved dvb 64-bit fixes from Peter Beutner. - - Signed-off-by: Peter Beutner <p.beutner at gmx.net> - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-18 18:48 rmcc - - * linux/drivers/media/video/bttv-input.c: (bttv_input_fini): - - - Replace del_timer with del_timer_sync - - Signed-off-by: Andrew Morton <akpm@osdl.org> - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-18 18:41 rmcc - - * linux/drivers/media/video/bttv-driver.c: - - - Re-enable sub-device release at bttv-driver, to fix DVB driver - reload - - Signed-off-by: Christopher Pascoe <c.pascoe@itee.uq.edu.au> - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-18 01:02 hverkuil - - * linux/drivers/media/video/saa7127.c: (saa7127_set_cc), - (saa7127_set_xds): - - CC data was swapped the wrong way around. - - Enabling CC disabled XDS and vice versa: these two should - be independent from one another. - Both bugs broke CC output. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-18 00:50 mchehab - - * linux/drivers/media/video/cx25840/cx25840-core.c: (set_v4lstd): - - Fix a broken logic that didn't cover all standards. - - Fix compilation failure with gcc 2.95.3. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-18 00:42 mchehab - - * linux/drivers/media/video/em28xx/em28xx-core.c: - * linux/drivers/media/video/em28xx/em28xx-i2c.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/media/video/em28xx/em28xx.h: - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - - Fix compilation failure with gcc 2.95.3. - - Signed-off-by: Jean Delvare <khali@linux-fr.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-17 23:26 mchehab - - * linux/drivers/media/video/cx25840/cx25840-core.c: (set_v4lstd): - * linux/drivers/media/video/em28xx/em28xx-core.c: - * linux/drivers/media/video/em28xx/em28xx-i2c.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/media/video/em28xx/em28xx.h: - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - - - Reverting the latest two patches - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-17 22:04 mkrufky - - * linux/drivers/media/video/cx25840/cx25840-core.c: (set_v4lstd): - - fix build error. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-17 21:27 mchehab - - * linux/drivers/media/video/cx25840/cx25840-core.c: (set_v4lstd): - - Fix compilation failure with gcc 2.95.3. - - Corrected a bug at video std check - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-17 21:27 mchehab - - * linux/drivers/media/video/em28xx/em28xx-core.c: - * linux/drivers/media/video/em28xx/em28xx-i2c.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/media/video/em28xx/em28xx.h: - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - - Fix compilation failure with gcc 2.95.3. - - Signed-off-by: Jean Delvare <khali@linux-fr.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-17 21:16 mchehab - - * linux/drivers/media/video/cx25840/cx25840-core.c: (set_v4lstd): - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-17 20:25 mkrufky - - * v4l/Makefile: - - removed "rm -f .*.o.cmd .*.ko.cmd" from "make distclean" - Since this is already being done by "make clean" it is redundant. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-17 19:11 mchehab - - * linux/drivers/media/video/bttv-driver.c: - - Fixed compiling with gcc 2.9x - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-16 04:12 mkrufky - - * v4l/Makefile: - - fix 'make install' to work when building against kernels other - than the currently running kernel version. - /sbin/depmod -a ${KERNELRELEASE} - - Thanks to: Michael Ditum <mike@mikeditum.co.uk> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-16 01:09 endriss - - * linux/drivers/media/dvb/ttpci/av7110.c: (init_av7110_av): - * linux/drivers/media/dvb/ttpci/av7110_hw.h: - - - enable SPDIF output for DVB-S rev 2.3 (FW > 2623 required) - - Signed-off-by: Oliver Endriss <o.endriss@gmx.de> - -2005-12-15 12:47 rmcc - - * linux/drivers/media/video/tveeprom.c: - - - Fix tuner 100 definition from hauppauge eeprom - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-14 22:29 hverkuil - - * linux/drivers/media/common/saa7146_hlp.c: (saa7146_set_position): - * linux/drivers/media/dvb/bt8xx/dst_ca.c: (dst_ca_read), - (dst_ca_write): - * linux/drivers/media/dvb/dvb-core/dvb_frontend.c: - (dvb_frontend_ioctl): - * linux/drivers/media/dvb/dvb-core/dvb_net.c: (dvb_net_do_ioctl): - * linux/drivers/media/dvb/frontends/bcm3510.c: - (bcm3510_download_firmware): - * linux/drivers/media/dvb/frontends/or51211.c: - (or51211_load_firmware): - - Fix 64-bit compile warnings. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-14 21:49 hverkuil - - * linux/drivers/media/video/bttv-driver.c: (bttv_do_ioctl): - * linux/drivers/media/video/bttv-vbi.c: (bttv_vbi_try_fmt), - (bttv_vbi_get_fmt): - * linux/drivers/media/video/bttvp.h: - * linux/drivers/media/video/tda9887.c: (dump_read_message), - (dump_write_message), (tda9887_set_tvnorm), (tda9887_set_insmod), - (tda9887_set_config), (tda9887_status), (tda9887_configure), - (tda9887_tuner_status), (tda9887_get_afc), (tda9887_standby), - (tda9887_tuner_init): - * linux/drivers/media/video/tuner-core.c: (set_type), (set_addr), - (tuner_attach), (tuner_command): - * linux/drivers/media/video/v4l1-compat.c: - (v4l_compat_translate_ioctl): - - - V4L2_(G|S|TRY)_FMT returned incorrect VBI start lines for PAL-M, - NTSC-JP, and PAL-60. They also returned an inaccurate VBI offset. - - V4L2_(G|S)_FMT and V4L2_TRY_FMT disagreed about the start of VBI - capturing in PAL and SECAM second field. Note the start line fixes - may break applications using VIDIOCSVBIFMT because this ioctl fails - when the driver does not support exactly the requested parameters. - - V4L2_TRY_FMT did not clear the reserved field in struct - v4l2_vbi_format. - - V4L2_(S|TRY)_FMT did not expect very large or small VBI start or - count values, returning wrong (but safe) counts due to an overflow. - - VIDIOCGVBIFMT confused V4L and V4L2 VBI flags. However this had no - effect because the flags have the same value and bttv never sets - them. - - In v4l_compat_translate_ioctl() the VIDIOC(G|S)VBIFMT code did not - expect V4L2 drivers supporting VBI formats besides V4L2_PIX_FMT_GREY. - - Signed-off-by: Michael H. Schimek <mschimek@gmx.at> - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-14 19:34 mchehab - - * linux/drivers/media/video/cx88/cx88-alsa.c: (dsp_buffer_init), - (snd_cx88_hw_params), (snd_cx88_card_trigger), - (cx88_audio_finidev): - - more videobuf stuff included ad dsp_buffer_init. Still no joy. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-14 17:39 mchehab - - * linux/drivers/media/video/cx88/cx88-alsa.c: - (_cx88_start_audio_dma), (buffer_setup), (buffer_queue), - (dsp_buffer_init), (dsp_buffer_free), (snd_cx88_pcm_open), - (snd_cx88_hw_params), (snd_cx88_prepare), (snd_cx88_card_trigger), - (snd_cx88_create), (cx88_audio_initdev), (cx88_audio_finidev): - - Several fixes at videobuf and alsa stuff. Still doesn't work. - = Included missing routines to stop device. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-14 00:14 mchehab - - * linux/drivers/media/video/cx88/cx88-alsa.c: - (_cx88_start_audio_dma), (cx8801_irq), (buffer_queue), - (snd_cx88_prepare), (snd_cx88_card_trigger), (snd_cx88_pointer), - (snd_cx88_create): - - several fixes at videobuf stuff. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-13 23:27 mchehab - - * linux/drivers/media/video/cx88/cx88-alsa.c: (cx8801_irq), - (buffer_setup), (buffer_prepare), (buffer_queue), (buffer_release), - (dsp_buffer_init), (snd_cx88_create), (cx88_audio_fini): - - videobuf code now compiles inside alsa code. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-12 21:29 mchehab - - * linux/include/linux/videodev.h: - - Reverted patchset 3127 since it breaks pvrusb2 compilation. - - should be reapplied later. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-12 03:39 mchehab - - * v4l/Make.config: - - Fixes compiling of videodev.c - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-11 18:06 mchehab - - * linux/drivers/media/video/cs53l32a.c: - * linux/drivers/media/video/cx25840/cx25840-audio.c: - * linux/drivers/media/video/cx25840/cx25840-core.c: - * linux/drivers/media/video/cx88/cx88-mpeg.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/media/video/mt20xx.c: - * linux/drivers/media/video/saa711x.c: (saa711x_detect_client): - * linux/drivers/media/video/tda8290.c: - * linux/drivers/media/video/tea5767.c: - * linux/drivers/media/video/wm8775.c: - * v4l/Make.config: - * v4l/Makefile: - * v4l/compat.h: - - Makes V4L compile with kernel 2.4 - - em28xx doesn't compile with 2.4 kernels. Additional work is - necessary to make it compile. - - Thanks-to: Stefan Leichter <Stefan.Leichter@camLine.com> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-11 17:43 mchehab - - * linux/drivers/media/video/bttv-input.c: (bttv_input_init): - - debug message changed to be backward compatible - - * linux/drivers/media/video/tuner-core.c: (set_type), - (tuner_fixup_std), (tuner_status), (tuner_attach), (tuner_probe), - (tuner_detach): - * linux/drivers/media/video/tuner-simple.c: - - added ntsc parameter - - parameters moved to the beginning at the file - - tuner_status moved to a better position. - - allow compiling with kernel 2.4 - - * linux/include/media/tuner.h: - - debug message changed to be backward compatible - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-11 15:34 mkrufky - - * linux/Documentation/video4linux/CARDLIST.tuner: - * linux/drivers/media/video/tuner-simple.c: - - "Philips 1236D ATSC/NTSC dual in" - fix typo. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-10 22:17 mchehab - - * linux/drivers/media/video/cx88/cx88-video.c: (get_control), - (set_control), (init_controls), (cx8800_initdev): - - now, default control values at cx88_cx8800_ctls are honored - - default value for contrast/saturation were changed to be - in line with available documentation for the chipset; - - Removed some bad coding at set_control; - - U/V Saturation now changes proportionally - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-10 17:44 rmcc - - * linux/drivers/media/video/Makefile: - * linux/drivers/media/video/bttv-cards.c: (bttv_init_card2): - * linux/drivers/media/video/bttv-driver.c: (bttv_irq): - * linux/drivers/media/video/bttv-gpio.c: - * linux/drivers/media/video/bttv-input.c: (ir_handle_key), - (bttv_input_irq), (bttv_input_timer), (rc5_decode), (bttv_rc5_irq), - (bttv_rc5_timer_end), (bttv_rc5_timer_keyup), (bttv_input_init), - (bttv_input_fini): - * linux/drivers/media/video/bttv.h: - * linux/drivers/media/video/bttvp.h: - * linux/drivers/media/video/ir-kbd-gpio.c: - * v4l/Makefile: - * v4l_experimental/bttv-input/bttv-input.c: - * v4l_experimental/bttv-input/bttv-input.diff: - - - ir-kbd-gpio functionally has been merged into the main bttv module - - Terminated experimental bttv-input - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-10 14:39 mchehab - - * linux/drivers/media/video/tveeprom.c: - (tveeprom_hauppauge_analog): - - Updates to the tveeprom eeprom checking - - Signed-of-by: Steven Toth <stoth@hauppauge.com> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-10 09:58 mchehab - - * linux/drivers/media/video/msp3400.c: - - Replaces MAX()/MIN() by kernel.h max()/min() macros - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-10 12:14 mchehab - - * linux/drivers/media/video/cx88/cx88-alsa.c: - (_cx88_start_audio_dma), (_cx88_stop_audio_dma), (cx8801_aud_irq): - - Fixed some DMA handlers. Yet to be tested. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-10 04:45 mchehab - - * linux/drivers/media/video/cx88/cx88-alsa.c: - (_cx88_start_audio_dma), (_cx88_stop_audio_dma), (cx8801_timeout), - (snd_cx88_set_digital_hw), (snd_cx88_pointer), (snd_cx88_pcm), - (snd_cx88_create): - - cx88-alsa now doesn't generate OOPS. Still doesn't work. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-10 02:06 mchehab - - * v4l/Makefile: - - videodev will not compile if not marked in kernel as a module - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-10 01:39 mchehab - - * linux/drivers/media/video/compat_ioctl32.c: - * linux/drivers/media/video/cs53l32a.c: - * linux/drivers/media/video/msp3400.c: - * linux/drivers/media/video/saa7115.c: - * linux/drivers/media/video/saa711x.c: - * linux/drivers/media/video/saa7127.c: - * linux/drivers/media/video/saa7134/saa7134-oss.c: - (oss_device_exit): - * linux/drivers/media/video/wm8775.c: - * v4l/compat.h: - - make it compile against kernel 2.4.32 - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-09 21:36 woods - - * linux/drivers/media/dvb/ttusb-dec/ttusb_dec.c: - * linux/drivers/media/dvb/ttusb-dec/ttusbdecfe.c: - - add symbolrates to the DVB-S frontend description - - fix capability flags in DVB-S frontend describtion - - remove some void casts - - disable zig-zag scanning as it makes no sense for DVB-T - - set sensible min_delay value - - return an error for requested filter types the driver can't handle - - Signed-off-by: Peter Beutner <p.beutner@gmx.net> - Signed-off-by: Alex Woods <linux-dvb@giblets.org> - -2005-12-09 22:02 mchehab - - * linux/drivers/media/video/videodev.c: - * v4l/Makefile: - - make videodev.c compile under V4L/DVB tree - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-08 21:35 mchehab - - * linux/drivers/media/video/compat_ioctl32.c: (native_ioctl), - (get_v4l2_framebuffer32), (do_video_ioctl), (v4l_compat_ioctl32): - - This patch fixes merge and typo problems in v4l2/compat, and fixes - VIDIOC_STREAMON, VIDIOC_STREAMOFF & VIDIOC_S_FBUF. - - Signed-off-by: Philippe De Muyter <phdm@macqel.be> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-08 20:59 mchehab - - * linux/drivers/media/video/ir-kbd-i2c.c: - * linux/include/linux/i2c-id.h: - - - I2C ID renamed to I2C_DRIVERID_INFRARED - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-08 20:57 mkrufky - - * linux/drivers/media/video/cx88/Kconfig: - - VIDEO_CX88_DVB_CX24123 is boolean, NOT tristate - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-08 20:40 mchehab - - * v4l/scripts/gentree.pl: - - - fixes handling for #if 0/#if 1 with keep - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-08 20:15 mchehab - - * linux/drivers/media/dvb/bt8xx/dst.c: (dst_read_status): - - uneccessary call commented - - sync with kernel - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-08 16:14 mchehab - - * linux/drivers/media/dvb/frontends/tda80xx.c: - - removed unneccessary header. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-08 16:04 mkrufky - - * v4l/compat.h: - - Revert my changes from this morning. I was wrong :-( - Thanks to Laurent Pinchart <laurent.pinchart@skynet.be> - for pointing out my error. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-08 15:45 mchehab - - * linux/Documentation/dvb/get_dvb_firmware: - - Updated firmware names - - * linux/drivers/media/common/saa7146_core.c: - (saa7146_pgtable_free): - - kfree (NULL) is valid. - - * linux/drivers/media/common/saa7146_fops.c: - (saa7146_buffer_queue), (saa7146_buffer_finish), - (saa7146_buffer_next): - - assert_spin_locked() is the new way - - * linux/drivers/media/common/saa7146_video.c: - (saa7146_video_do_ioctl), (buffer_prepare): - * linux/drivers/media/dvb/dvb-usb/dibusb-common.c: - (dibusb_i2c_xfer): - - small fixes to make in sync with kernel - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-08 15:10 mchehab - - * linux/drivers/media/dvb/dvb-core/dvb_filter.c: - * linux/drivers/media/dvb/frontends/lgdt330x.c: - (lgdt3302_read_status), (lgdt3302_read_snr), (lgdt3303_read_snr): - * linux/drivers/media/dvb/frontends/stv0297.c: - * linux/drivers/media/dvb/frontends/tda80xx.c: (tda8044_init): - * linux/drivers/media/dvb/ttpci/av7110.c: - * linux/drivers/media/dvb/ttpci/ttpci-eeprom.c: - * linux/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c: - (ttusb_probe): - * linux/drivers/media/video/em28xx/em28xx-input.c: - (get_key_em_haup): - - - more #if 0 / #if 1 fixes to be in sync with kernel - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-08 14:05 mchehab - - * README.CVS: - - Updated to explain usage of #if macros - - * v4l/scripts/gentree.pl: - - gentree was removing linux/version.h from .c files. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-08 13:47 mchehab - - * linux/drivers/media/dvb/b2c2/flexcop-eeprom.c: - * linux/drivers/media/dvb/b2c2/flexcop-sram.c: - * linux/drivers/media/dvb/b2c2/flexcop-usb.c: - * linux/drivers/media/dvb/b2c2/flexcop-usb.h: - * linux/drivers/media/dvb/dvb-core/dvb_filter.c: - * linux/drivers/media/dvb/dvb-core/dvb_net.c: - * linux/drivers/media/dvb/frontends/at76c651.c: (at76c651_set_qam): - * linux/drivers/media/dvb/frontends/bcm3510.c: - * linux/drivers/media/dvb/frontends/lgdt330x.c: - (lgdt3302_read_status), (lgdt3302_read_snr), (lgdt3303_read_snr): - * linux/drivers/media/dvb/frontends/tda10021.c: - * linux/drivers/media/dvb/frontends/tda80xx.c: - * linux/drivers/media/dvb/ttpci/av7110.c: (debiirq), (vpeirq): - * linux/drivers/media/dvb/ttpci/av7110_hw.c: - * linux/drivers/media/dvb/ttpci/budget-patch.c: - (budget_patch_attach): - * linux/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c: - (ttusb_iso_irq): - - - keep #if 0 for existent code when genreating kernel patches - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-08 12:37 mkrufky - - * v4l/compat.h: - - fixed backwards compatability for non-vanilla 2.6.14 kernels. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-08 12:31 mchehab - - * linux/drivers/media/video/btcx-risc.c: - * linux/drivers/media/video/cs53l32a.c: - * linux/drivers/media/video/video-buf.c: - * linux/drivers/media/video/wm8775.c: - - - removed unneeded linux/version.h - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-08 10:49 mchehab - - * linux/Documentation/dvb/faq.txt: - - Removed inexistent site - * linux/drivers/media/common/saa7146_core.c: - - keep debug #if 0 at kernel patches - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-08 02:51 rmcc - - * linux/drivers/media/video/ir-kbd-gpio.c: (ir_probe): - * v4l_experimental/bttv-input/bttv-input.c: (ir_handle_key), - (bttv_rc5_timer_end), (bttv_rc5_timer_keyup), (bttv_input_init), - (bttv_input_fini): - * v4l_experimental/bttv-input/bttv-input.diff: - - - Bugfix at bttv GPIO remote handler - - Updated experimental bttv-input to new kernel input syntax - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-08 02:43 rmcc - - * linux/drivers/media/video/saa7134/saa7134-cards.c: - - - The Pinnacle PCTV Stereo needs tda9887 port2 set to 1 (fixes - http://bugzilla.kernel.org/show_bug.cgi?id=5699) - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-07 23:06 endriss - - * v4l/Makefile: - - - compile av7110 firmware into the dvb-ttpci driver - if CONFIG_DVB_AV7110_FIRMWARE=y - - Signed-off-by: Oliver Endriss <o.endriss@gmx.de> - -2005-12-07 17:33 mchehab - - * v4l/scripts/gentree.pl: - - - added some tests for compatibility #if - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-07 17:29 mchehab - - * linux/drivers/media/dvb/b2c2/flexcop-reg.h: - * linux/drivers/media/video/msp3400.c: - * linux/drivers/media/video/tda9887.c: (tda9887_suspend): - - - #elifs replaced since gentree.pl script is not able - to handle elifs. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-07 15:27 mchehab - - * linux/drivers/media/video/bttv-driver.c: - - - Reverted a wrong commit at the previous patch. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-07 14:12 mchehab - - * linux/drivers/media/video/bttv-driver.c: - * linux/drivers/media/video/saa7134/saa7134.h: - * linux/drivers/media/video/videodev.c: (video_release), - (video_register_device): - * linux/include/media/tuner.h: - - - kernel-sync patches. - - * linux/include/linux/videodev.h: - - Removes obsolete stuff from videodev.h - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-07 12:28 mchehab - - * linux/drivers/media/video/saa7134/Makefile: - * linux/drivers/media/video/saa7134/saa7134-core.c: - * linux/drivers/media/video/saa7134/saa7134-input.c: - (saa7134_input_init1): - * linux/drivers/media/video/saa7134/saa7134-oss.c: - (saa7134_oss_init): - * linux/drivers/media/video/tuner-core.c: (tuner_suspend): - * linux/drivers/media/video/tvaudio.c: (chip_write), (chip_read), - (chip_probe): - * linux/drivers/media/video/tveeprom.c: - * linux/drivers/media/video/tvp5150.c: - * linux/drivers/media/video/v4l1-compat.c: - (v4l_compat_translate_ioctl): - * linux/sound/pci/bt87x.c: (snd_bt87x_create): - - - kernel-sync patches. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-07 12:01 mchehab - - * linux/drivers/media/video/bttv-driver.c: - * linux/drivers/media/video/bttv-i2c.c: - - - include reorder to make it compile again. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-07 11:49 mchehab - - * linux/drivers/media/video/compat_ioctl32.c: (native_ioctl), - (v4l_compat_ioctl32): - * linux/drivers/media/video/cx25840/cx25840-audio.c: - * linux/drivers/media/video/cx25840/cx25840-core.c: - * linux/drivers/media/video/cx88/Kconfig: - * linux/drivers/media/video/cx88/cx88.h: - * linux/drivers/media/video/rds.h: - * linux/drivers/media/video/saa6588.c: (block_to_user_buf), - (read_from_buf): - * linux/drivers/media/video/saa7115.c: - * linux/drivers/media/video/saa7127.c: - - - kernel-sync patches. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-07 11:15 mchehab - - * linux/drivers/media/video/bttv-driver.c: (set_pll), - (setup_window), (bttv_do_ioctl): - * linux/drivers/media/video/bttv-i2c.c: - * linux/drivers/media/video/bttvp.h: - - - Syncs bttv stuff with kernel version. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-07 09:33 mchehab - - * linux/drivers/media/video/compat_ioctl32.c: (get_video_tuner32), - (put_video_tuner32), (get_v4l2_window32), (put_v4l2_window32), - (get_v4l2_pix_format), (put_v4l2_pix_format), - (get_v4l2_vbi_format), (put_v4l2_vbi_format), (get_v4l2_format32), - (put_v4l2_format32), (get_v4l2_standard32), (put_v4l2_standard32), - (get_v4l2_buffer32), (put_v4l2_buffer32), (put_v4l2_framebuffer32), - (do_video_ioctl): - - This patch add 32-bit compatibility for v4l2 framegrabber ioctls. - - Signed-off-by: Philippe De Muyter <phdm@macqel.be> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-07 06:49 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-hdw-internal.h: - * v4l_experimental/pvrusb2/pvrusb2-i2c.c: (pvr2_i2c_attach_inform), - (pvr2_i2c_ifhandler_cmd), (pvr2_i2c_detach_inform): - * v4l_experimental/pvrusb2/pvrusb2-i2c.h: - * v4l_experimental/pvrusb2/pvrusb2-main.c: (pvr_init): - * v4l_experimental/pvrusb2/pvrusb2-tuner.c: (pvr2_tuner_set_freq), - (pvr2_tuner_set_standard): - - - Support tda9887 in pvrusb2 driver. These changes become benign - if tda9887 is not needed by for a particular tuner type or if - tda9887 itself eventually goes away. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2005-12-06 16:51 mkrufky - - * linux/drivers/media/video/cx88/cx88-input.c: (cx88_ir_init): - - Enable remote control on AVERTV STUDIO 303 - - This patch adapted from a patch found on a website posted by - an anonymous user. Thanks to original anonymous author for - creating this patch. Tested successfully by George Gazurkoff. - - Signed-off-by: George Gazurkoff <gazurkoff@gmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-05 21:30 hverkuil - - * linux/drivers/media/video/tuner-simple.c: (default_set_tv_freq): - - Fix incorrect matching of TV standards leading to incorrect IFPCoff - values. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-05 21:24 hverkuil - - * linux/drivers/media/video/tda9887.c: (tda9887_set_insmod), - (tda9887_set_config), (tda9887_fixup_std), (tda9887_configure): - * linux/include/media/tuner.h: - - Set the tuner takeover point to 0x10 for NTSC/radio and 0x14 for PAL/SECAM. - - Allow override through TDA9887_SET_CONFIG - - PAL-N belongs with PAL-BG as does PAL-H. PAL-Nc belongs to PAL-M - - Add SECAM-BGH - - Set video freq to cVideoIF_38_90 for DK standards. - - Add cTunerGainLow to radio, change deemphasis to 75 for mono. - - Add ntsc module param for 'M' and 'J' (Japanese) standards. - - Fix module handling for 2.4. - - Now able to select all standards through pal/secam/ntsc module options - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-05 20:45 hverkuil - - * linux/drivers/media/video/Kconfig: - - Add CONFIG_VIDEO_ADV_DEBUG. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-05 14:41 mchehab - - * linux/drivers/media/video/em28xx/em28xx-core.c: (rvmalloc), - (rvfree): - * linux/drivers/media/video/em28xx/em28xx-video.c: - - - Make em28xx page alloc compatible with kernels < 2.6.15 - - Signed-off-by: Sascha Sommer <saschasommer@freenet.de> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-05 14:03 mchehab - - * linux/drivers/media/video/em28xx/em28xx-core.c: - (em28xx_request_buffers), (em28xx_release_buffers): - * linux/drivers/media/video/em28xx/em28xx-video.c: - (em28xx_v4l2_mmap): - - - Convert em28xx to use vm_insert_page instead of remap_pfn_range - - Signed-off-by: Sascha Sommer <saschasommer@freenet.de> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-05 02:21 mchehab - - * linux/drivers/media/video/cx88/cx88-tvaudio.c: - (set_audio_finish): - * linux/drivers/media/video/cx88/cx88.h: - * linux/drivers/media/video/cx88/cx88-blackbird.c: - (blackbird_probe): - - This patch adds eeprom awareness for the Roslyn. In effect, the - blackbird will query the tuner V4L2_STD_xxxx definitions to determine - whether it's connected to a NTSC or PAL tuner. Based on that, various - default values will change for blackbird encoding. - - - Fixes back panel SVIDEO/COMPOSITE with audio, work properly. - - Fixes a problem with lip sync issues, due to bad framerate vs - audio rate assumptions. - - * linux/drivers/media/video/cx88/cx88-cards.c: (hauppauge_eeprom): - - Fixed a problem with the GPIO configuration in cx88-cards. - - Removed the comments in cx88-cards that made no sense. - - Signed-off-by: Steven Toth <stoth@hauppauge.com> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-04 21:01 mkrufky - - * linux/drivers/media/video/bttv-driver.c: - * linux/drivers/media/video/cx88/cx88-alsa.c: (cx88_audio_init): - * linux/drivers/media/video/saa7134/saa7134-core.c: (saa7134_init): - - [PATCH 9/11] MEDIA: replace all uses of - pci_module_init with pci_register_driver - - Signed-off-by: Otavio Salvador <otavio@debian.org> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-04 19:43 mkrufky - - * v4l/scripts/prepare-ChangeLog.pl: - - s/"ChangeLog"/"v4l/ChangeLog" - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-04 19:30 mkrufky - - * linux/drivers/media/video/tveeprom.c: - - tveeprom cleanup of hardcoded tuner format values. - - cleaned up the structure to use the V4L2_STD_xxx definitions - rather than a one off set of hardcoded values - which could - change in the future. - - Signed-off-by: Steven Toth <stoth@hauppauge.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-04 19:20 mkrufky - - * Makefile: - * v4l/scripts/prepare-ChangeLog.pl: - - Show Changelog entries relative to top-level cvs directory, - rather than v4l/ directory. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-04 16:31 hverkuil - - * linux/drivers/media/video/msp3400.c: - - Restore 2.4 support. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-04 12:16 hverkuil - - * linux/drivers/media/video/bttv-cards.c: (miro_pinnacle_gpio), - (bttv_init_card2): - * linux/drivers/media/video/bttv-driver.c: - * linux/drivers/media/video/bttvp.h: - * linux/drivers/media/video/mt20xx.c: (microtune_init): - * linux/drivers/media/video/tda9887.c: (tda9887_configure), - (tda9887_attach), (tda9887_command): - * linux/drivers/media/video/tuner-core.c: (tuner_command): - * linux/include/media/audiochip.h: - - Remove AUDC_CONFIG_PINNACLE horror. This also fixes radio support - for mt20xx tuners. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-04 01:04 rmcc - - * linux/drivers/media/common/ir-common.c: (ir_input_init): - * linux/drivers/media/dvb/cinergyT2/cinergyT2.c: - (cinergyt2_query_rc), (cinergyt2_register_rc), - (cinergyt2_unregister_rc), (cinergyt2_suspend_rc), - (cinergyt2_resume_rc), (cinergyt2_probe), (cinergyt2_disconnect): - * linux/drivers/media/dvb/dvb-usb/dvb-usb-remote.c: - (dvb_usb_read_remote_control), (dvb_usb_remote_init), - (dvb_usb_remote_exit): - * linux/drivers/media/dvb/dvb-usb/dvb-usb.h: - * linux/drivers/media/dvb/ttpci/av7110_ir.c: - (av7110_emit_keyup), (av7110_emit_key), (input_register_keys), - (av7110_ir_init), (av7110_ir_exit): - * linux/drivers/media/dvb/ttpci/budget-ci.c: - (msp430_ir_interrupt), (msp430_ir_init), (msp430_ir_deinit): - * linux/drivers/media/dvb/ttusb-dec/ttusb_dec.c: - (ttusb_dec_handle_irq), (ttusb_init_rc), (ttusb_dec_exit_rc), - (ttusb_dec_probe): - * linux/drivers/media/video/bttvp.h: - * linux/drivers/media/video/cx88/cx88-input.c: - (cx88_ir_handle_key), (cx88_ir_init), (cx88_ir_fini), - (cx88_ir_irq): - * linux/drivers/media/video/ir-kbd-gpio.c: (ir_handle_key), - (ir_rc5_timer_end), (ir_rc5_timer_keyup), (ir_probe), (ir_remove): - * linux/drivers/media/video/ir-kbd-i2c.c: (ir_key_poll), - (ir_attach), (ir_detach): - * linux/drivers/media/video/saa7134/saa7134-input.c: - (build_key), (saa7134_input_init1), (saa7134_input_fini): - * linux/drivers/media/video/saa7134/saa7134.h: - * linux/include/media/ir-kbd-i2c.h: - * v4l/compat.h: - - - Backport of Dmitry Torokhov's input layer changes at mainline - kernel (kernel sync) - - Added backwards compatibility checks for kernels < 2.6.15 - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-12-02 23:00 hverkuil - - * linux/drivers/media/video/tda9887.c: (tda9887_command): - - Add '0x' prefix to register values reported in status log. - This clearly marks them as hex values. - - * linux/drivers/media/video/tuner-core.c: (tuner_status), - (tuner_command): - - Add VIDIOC_LOG_STATUS. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-02 22:04 mkrufky - - * linux/drivers/media/video/cx88/cx88-dvb.c: - - Removed check for kernel version > 2.6.12 before - setting .output_mode for cx22702 - - This is no longer needed for backwards compatability, - due to the v4l-dvb merged cvs. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-02 21:36 mkrufky - - * linux/drivers/media/video/cx88/cx88-i2c.c: - (cx88_call_i2c_clients): - - fixed v4l-only build. (Build v4l modules without dvb support) - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-02 20:06 hverkuil - - * linux/drivers/media/video/em28xx/em28xx-video.c: - (em28xx_do_ioctl): - - fixed missing closing } - * linux/drivers/media/video/msp3400.c: (msp3400c_setvolume), - (msp_attach), (msp_detach): - - remove dead code - - remove volume scaling (does not belong here, whether max volume - results in distortion depends on the specific hardware in which - the msp3400 is used, not on the msp3400 itself). - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-12-02 17:47 mchehab - - * linux/drivers/media/video/em28xx/em28xx-video.c: - (em28xx_get_ctrl), (saa711x_get_ctrl), (em28xx_set_ctrl), - (saa711x_set_ctrl): - - Controls now cames from video and audio decoder driver - for msp3400 and tvp5150. - - * linux/drivers/media/video/msp3400.c: (msp_get_ctrl), - (msp_set_ctrl), (msp_command): - - Added sound controls as provided by the device. - - * linux/drivers/media/video/tvp5150.c: (tvp5150_selmux), - (tvp5150_get_ctrl), (tvp5150_set_ctrl), (tvp5150_command): - - Added video controls as provided by the device. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-02 14:03 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-version.h: - - -Update driver version info - - Signed-off-by: Mike Isely <isely@pobox.com> - -2005-12-02 14:00 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-tuner.c: - (pvr2_tuner_set_freq): - - -Need to clear v4l2_frequency structure to zero before using it, - in order that newly added fields (that we otherwise would not - care about) will take proper default values. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2005-12-02 13:56 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-hdw.c: - * v4l_experimental/pvrusb2/pvrusb2-tuner.c: - * v4l_experimental/pvrusb2/pvrusb2-v4l2.c: (pvr2_v4l2_do_ioctl): - * v4l_experimental/pvrusb2/pvrusb2-video-v4l.c: - (pvr2_decoder_v4l_set_norm): - - - Fix some problems accidentally introduced during earlier PAL-M - enhancement - - Signed-off-by: Mike Isely <isely@pobox.com> - -2005-12-02 13:33 mcisely - - * v4l_experimental/pvrusb2/Kbuild: - - - Remove addition of tveeprom.o to Kbuild, caused by an accidental - commit from mchehab - - Signed-off-by: Mike Isely <isely@pobox.com> - -2005-12-02 13:27 mcisely - - * v4l_experimental/pvrusb2/pvrusb2-eeprom.c: - * v4l_experimental/pvrusb2/pvrusb2-tuner.c: - (pvr2_tuner_set_standard): - * v4l_experimental/pvrusb2/pvrusb2-v4l2.c: (pvr2_v4l2_do_ioctl): - * v4l_experimental/pvrusb2/pvrusb2-video-v4l.c: - (pvr2_decoder_v4l_set_norm): - - - Change all uses of V4L2_STD_NTSC to V4L2_STD_NTSC_M, which is - needed to compensate for a change in tuner-simple.c that causes it - to be sensitive to the precise video standard in use. - - Signed-off-by: Mike Isely <isely@pobox.com> - -2005-12-02 10:57 mchehab - - * README: - * README.CVS: - * README.patches: - * v4l/README: - * v4l/README.patches: - - - Readme updates with common instructions for both v4l and dvb - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-02 04:37 mkrufky - - * linux/Documentation/video4linux/CARDLIST.cx88: - * linux/drivers/media/video/cx88/cx88-cards.c: - - Add support for another Nova-T-PCI PCI subdevice 0x9001 - - Signed-off-by: Steven Toth <stoth@hauppauge.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-02 04:22 mkrufky - - * linux/drivers/media/video/cx88/cx88-i2c.c: - (cx88_call_i2c_clients): - - Cleanup check for dvb. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-02 04:07 mkrufky - - * linux/Documentation/video4linux/CARDLIST.cx88: - * linux/drivers/media/dvb/dvb-core/dvb_frontend.h: - * linux/drivers/media/dvb/frontends/cx22702.c: - (cx22702_i2c_gate_ctrl), (cx22702_set_tps), (cx22702_init): - * linux/drivers/media/video/cx88/cx88-cards.c: - (hauppauge_eeprom), (cx88_card_setup): - * linux/drivers/media/video/cx88/cx88-dvb.c: (dvb_register), - (dvb_probe), (dvb_remove): - * linux/drivers/media/video/cx88/cx88-i2c.c: - (cx88_call_i2c_clients): - * linux/drivers/media/video/cx88/cx88-input.c: (cx88_ir_init): - * linux/drivers/media/video/cx88/cx88.h: - - Add support for the Hauppauge HVR1100 and HVR1100-LP products. - - Add i2c_gate_ctrl callback function to dvb_frontend_ops struct. - - Signed-off-by: Steven Toth <stoth@hauppauge.com> - Acked-by: Johannes Stezenbach <js@linuxtv.org> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-02 01:37 mkrufky - - * linux/drivers/media/video/cx88/cx88-cards.c: - - fix analog NTSC for DViCO FusionHDTV3 Gold-T - - add tda9887 to card struct - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-12-01 22:28 mkrufky - - * linux/drivers/media/video/cx88/cx88-cards.c: - - fix analog NTSC for pcHDTV 3000 - - add tda9887 to card struct - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-12-01 06:05 mkrufky - - * linux/drivers/media/dvb/dvb-core/dvb_ca_en50221.c: - (dvb_ca_en50221_release): - - vfree(NULL) is legal. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-30 16:18 mchehab - - * linux/drivers/media/video/tuner-simple.c: - (default_set_tv_freq): - - New debug msg to show video freqs. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-29 19:45 mchehab - - * v4l_experimental/pvrusb2/pvrusb2-eeprom.c: - * v4l_experimental/pvrusb2/pvrusb2-encoder.c: - (pvr2_encoder_configure): - * v4l_experimental/pvrusb2/pvrusb2-hdw.c: - (pvr2_hdw_commit_ctl_internal): - - - Fixed support for PAL-M. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-29 16:00 mkrufky - - * v4l/Makefile: - - add stv0297_cs2.ko to inst_frontends - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-29 14:07 mchehab - - * v4l_experimental/pvrusb2/pvrusb2-audio.c: - (pvr2_audio_set_standard): - * v4l_experimental/pvrusb2/pvrusb2-encoder.c: - (pvr2_encoder_configure): - * v4l_experimental/pvrusb2/pvrusb2-hdw.c: - * v4l_experimental/pvrusb2/pvrusb2-hdw.h: - * v4l_experimental/pvrusb2/pvrusb2-tuner.c: - (pvr2_tuner_set_standard): - * v4l_experimental/pvrusb2/pvrusb2-v4l2.c: (pvr2_v4l2_do_ioctl): - * v4l_experimental/pvrusb2/pvrusb2-video-v4l.c: - (pvr2_decoder_v4l_set_norm): - - Added PAL-M video standard. Still not working. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-29 13:41 mchehab - - * linux/drivers/media/video/tuner-simple.c: - (default_set_tv_freq): - - Added an offset parameter to allow adjusting tuner offsets - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-29 13:36 mkrufky - - * v4l/Make.config: - * v4l/Makefile: - - DST cannot be built separately from DVB-BT8XX - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-28 15:42 mcisely - - * linux/drivers/media/video/tveeprom.c: - - Restore missing tuner definition for Hauppauge tuner type 0x103 - ("TCL MFNM05-04"). - - Signed-off-by: Mike Isely <isely@pobox.com> - -2005-11-28 12:55 mkrufky - - * v4l/Make.config: - * v4l/Makefile: - - Enable support for OSD functions in dvb-ttpci driver. - - Thanks to both Matthias Schwarzott <zzam@gentoo.org> and - Frank Enderle <fen@init-6.org>, for each sending in the same fix. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-27 17:34 mkrufky - - * v4l/Makefile: - * v4l/scripts/makelinks.sh: - - "make kernel-links" (dvb-kernel "makelinks" build method) - Updated for merged tree. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-27 15:02 mkrufky - - * v4l/Makefile: - - fix install for saa7146. - - allow separate, 'make v4l-install' and 'make dvb-install' - 'make install' does both. - - 'make clean' and 'make distclean' less verbose. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-27 12:33 hverkuil - - * linux/drivers/media/video/saa7115.c: (saa7115_log_status): - - fix VIDIOC_LOG_STATUS message (prints random pointer as string). - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-11-27 01:01 mkrufky - - * v4l/Makefile: - - cleanups - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-27 00:42 hverkuil - - * linux/drivers/media/video/msp3400.c: (msp_attach), - (msp_detach), (msp_probe): - - Fix gcc-4.0.2 compile error. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-11-27 00:29 hverkuil - - * linux/drivers/media/video/msp3400.c: (msp_wake_thread), - (msp_suspend), (msp_resume): - * linux/drivers/media/video/tda9887.c: (tda9887_suspend), - (tda9887_resume): - * linux/drivers/media/video/tuner-core.c: (tuner_resume): - - Fix suspend/resume compile warnings when compiled with 2.6.15. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-11-27 00:03 hverkuil - - * linux/drivers/media/video/tuner-simple.c: - * linux/include/media/tuner.h: - - Fix wrong tuner define. Tuner 46 is a TUNER_PANASONIC_VP27, - not a Microtune. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-11-26 23:40 mchehab - - * linux/Documentation/dvb/README.dvb-usb: - * linux/Documentation/dvb/README.flexcop: - * linux/Documentation/dvb/avermedia.txt: - * linux/Documentation/dvb/bt8xx.txt: - * linux/Documentation/dvb/cards.txt: - * linux/Documentation/dvb/contributors.txt: - * linux/Documentation/dvb/get_dvb_firmware: - * linux/Documentation/dvb/readme.txt: - * linux/drivers/media/common/Kconfig: - * linux/drivers/media/common/Makefile: - * linux/drivers/media/common/saa7146_core.c: - * linux/drivers/media/common/saa7146_fops.c: (fops_open), - * linux/drivers/media/common/saa7146_i2c.c: - * linux/drivers/media/common/saa7146_vbi.c: (vbi_workaround): - * linux/drivers/media/common/saa7146_video.c: (try_win), - * linux/drivers/media/dvb/b2c2/flexcop-common.h: - * linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c: - * linux/drivers/media/dvb/bt8xx/Kconfig: - * linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c: - * linux/drivers/media/dvb/cinergyT2/Kconfig: - * linux/drivers/media/dvb/dvb-core/Kconfig: - * linux/drivers/media/dvb/dvb-core/Makefile: - * linux/drivers/media/dvb/dvb-core/demux.h: - * linux/drivers/media/dvb/dvb-core/dmxdev.c: - * linux/drivers/media/dvb/dvb-core/dmxdev.h: - * linux/drivers/media/dvb/dvb-core/dvb_ca_en50221.c: - * linux/drivers/media/dvb/dvb-core/dvb_filter.c: - * linux/drivers/media/dvb/dvb-core/dvb_filter.h: - * linux/drivers/media/dvb/dvb-core/dvb_frontend.c: - * linux/drivers/media/dvb/dvb-core/dvb_frontend.h: - * linux/drivers/media/dvb/dvb-core/dvb_net.c: - * linux/drivers/media/dvb/dvb-core/dvb_ringbuffer.c: - * linux/drivers/media/dvb/dvb-core/dvb_ringbuffer.h: - * linux/drivers/media/dvb/dvb-core/dvbdev.c: (dvb_device_open), - * linux/drivers/media/dvb/dvb-core/dvbdev.h: - * linux/drivers/media/dvb/dvb-usb/vp702x-fe.c: - * linux/drivers/media/dvb/dvb-usb/vp7045-fe.c: - * linux/drivers/media/dvb/frontends/Kconfig: - * linux/drivers/media/dvb/frontends/at76c651.c: - * linux/drivers/media/dvb/frontends/bcm3510.c: - * linux/drivers/media/dvb/frontends/cx22700.c: - * linux/drivers/media/dvb/frontends/cx22702.c: - * linux/drivers/media/dvb/frontends/cx22702.h: - * linux/drivers/media/dvb/frontends/cx24110.c: - * linux/drivers/media/dvb/frontends/cx24123.c: - * linux/drivers/media/dvb/frontends/l64781.c: (l64781_init), - * linux/drivers/media/dvb/frontends/l64781.h: - * linux/drivers/media/dvb/frontends/lgdt330x.c: - * linux/drivers/media/dvb/frontends/mt312.c: - * linux/drivers/media/dvb/frontends/nxt2002.c: - * linux/drivers/media/dvb/frontends/nxt200x.c: - * linux/drivers/media/dvb/frontends/nxt6000.c: - * linux/drivers/media/dvb/frontends/or51132.c: - * linux/drivers/media/dvb/frontends/s5h1420.c: - * linux/drivers/media/dvb/frontends/s5h1420.h: - * linux/drivers/media/dvb/frontends/sp8870.c: (sp8870_writereg), - * linux/drivers/media/dvb/frontends/sp887x.c: (sp887x_readreg), - * linux/drivers/media/dvb/frontends/stv0299.c: - * linux/drivers/media/dvb/frontends/tda10021.c: - * linux/drivers/media/dvb/frontends/tda10021.h: - * linux/drivers/media/dvb/frontends/tda1004x.c: - * linux/drivers/media/dvb/frontends/tda8083.c: - * linux/drivers/media/dvb/pluto2/Kconfig: - * linux/drivers/media/dvb/ttpci/Kconfig: - * linux/drivers/media/dvb/ttpci/Makefile: - * linux/drivers/media/dvb/ttpci/av7110.c: (arm_thread), - * linux/drivers/media/dvb/ttpci/av7110.h: - * linux/drivers/media/dvb/ttpci/av7110_hw.c: - * linux/drivers/media/dvb/ttpci/av7110_v4l.c: - * linux/drivers/media/dvb/ttpci/budget-av.c: - * linux/drivers/media/dvb/ttpci/budget-core.c: - * linux/drivers/media/dvb/ttpci/budget-patch.c: - * linux/drivers/media/dvb/ttpci/budget.c: (alps_bsrv2_pll_set), - * linux/drivers/media/dvb/ttpci/budget.h: - * linux/drivers/media/dvb/ttpci/fdump.c: (main): - * linux/drivers/media/dvb/ttpci/ttpci-eeprom.c: (check_mac_tt), - * linux/drivers/media/dvb/ttusb-budget/Kconfig: - * linux/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c: - * linux/drivers/media/dvb/ttusb-budget/dvb-ttusb-dspbootcode.h: - * linux/drivers/media/dvb/ttusb-dec/Kconfig: - * linux/drivers/media/dvb/ttusb-dec/ttusb_dec.c: - * linux/include/linux/dvb/audio.h: - * linux/include/linux/dvb/ca.h: - * linux/include/linux/dvb/dmx.h: - * linux/include/linux/dvb/osd.h: - * linux/include/linux/dvb/video.h: - * linux/include/media/saa7146.h: - * linux/include/media/saa7146_vv.h: - - Whitespaces cleanups over DVB tree. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-26 14:31 hverkuil - - * linux/drivers/media/video/cx25840/cx25840-core.c: - (input_change), (set_input), (set_v4lctrl): - * linux/drivers/media/video/cx25840/cx25840.h: - * linux/drivers/media/video/tveeprom.c: (hasRadioTuner), - (tveeprom_hauppauge_analog): - * linux/include/media/tveeprom.h: - - - add workaround for Hauppauge PVR150 hardware problem with - tuner models 85, 99 and 112 (model numbers as reported by tveeprom). - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-11-25 21:35 mchehab - - * linux/Documentation/video4linux/CARDLIST.bttv: - * linux/drivers/media/video/bttv-cards.c: (hauppauge_eeprom): - * linux/drivers/media/video/bttv.h: - - - Modifications to bttv to support the Hauppauge ImpactVCB product - (Model #64900). - - Signed-off-by: Steven Toth <stoth@hauppauge.com> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-25 13:44 mchehab - - * linux/drivers/media/video/tuner-simple.c: - * linux/include/media/tuner.h: - * v4l/scripts/cardlist: - - tuner description now follows the same CodingStyle as the others - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-25 10:46 mchehab - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - * linux/drivers/media/video/saa7134/saa7134.h: - - - Added "TerraTec Cinergy 250 PCI" board (tv and radio). - - svideo not tested - - remote does not work (neither gpio nor i2c) - - Signed-off-by: Jrg Schummer <joerg.schummer@web.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-25 10:21 mchehab - - * linux/drivers/media/video/tveeprom.c: - (tveeprom_hauppauge_analog): - - - Fixed code handling for eeprom on cx88 boards. - - * linux/drivers/media/video/cx88/cx88-cards.c: - (hauppauge_eeprom): - - Hauppauge released a new version of the Nova-T-PCI (9002) a few months - ago with a different (compatible) tuner (but lacking RF passthru). The - official model# is 90003. All features are working. - - Adding entry to the known model list after testing. - - Signed-off-by: Steven Toth <stoth@hauppauge.com> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-24 21:57 nshmyrev - - * linux/drivers/media/video/bttv-driver.c: (bttv_common_ioctls), - (bttv_do_ioctl): - - Fixed bttv ioctls VIDIOC_ENUMINPUT, VIDIOCGTUNER, VIDIOC_QUERYCAP. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - Signed-off-by: Michael H. Schimek <mschimek@gmx.at> - -2005-11-24 21:49 nshmyrev - - * linux/drivers/media/video/saa7134/saa7134-core.c: - (saa7134_fini): - - Fix crash when not compiled as module. - - Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@stud.uni-karlsruhe.de> - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-11-24 21:38 mkrufky - - * v4l/Make.config: - * v4l/Makefile: - - added dvb device modules to build configuration. - - these will be enabled later in the merge-trees build. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-23 09:39 nshmyrev - - * v4l/linux/drivers/media/video/saa711x.c: - Write cached value to correct register for SECAM. - - Signed-off-by: Dwaine Garden <DwaineGarden@rogers.com> - -2005-11-23 09:10 nshmyrev - - * v4l/linux/drivers/media/video/bttv-driver.c: - * v4l/linux/drivers/media/video/video-buf.c: - bttv raw format fix to fix VIDIOCSPICT ioctl. - - Signed-off-by: Michael H. Schimek <mschimek@gmx.at> - -2005-11-23 06:23 mkrufky - - * v4l/compat.h: - - remove repeated code - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-23 06:23 mkrufky - - * v4l/compat.h: - - remove repeated code - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-23 05:25 mkrufky - - * v4l/Make.config: - * v4l/Makefile: - * v4l/compat.h: - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - add dvb-core to v4l/dvb merged-trees build environment - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-22 19:30 mkrufky - - * linux/Documentation/video4linux/CARDLIST.cx88: - * linux/drivers/media/video/cx88/cx88-cards.c: - (cx88_card_setup): - * linux/drivers/media/video/cx88/cx88-dvb.c: - (cx24123_enable_lnb_voltage), (dvb_register): - * linux/drivers/media/video/cx88/cx88.h: - - add support for KWorld DVB-S 100, based on the same chips as - Hauppauge Nova-S Plus (CX23883/CX24123/CX24109), without the - Intersil ISL6421, which is used for LNB control. - - LNB voltage and tone are controled by LNBDC and LNBTone bits - from register 0x29 of the CX24123 demodulator. - - The MO_GP0_IO register from CX23883 is used to turn LNB power - on and off. - - Signed-off-by: Vadim Catana <skystar@moldova.cc> - Acked-by: Johannes Stezenbach <js@linuxtv.org> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-22 03:46 mkrufky - - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - DST build currently disabled in merged-tree build environment. - Currently broken in merged v4l+dvb trees due to some changes - in include/linux/dvb/frontend.h - - To re-enable it, edit Make.config - - - DST is NOT broken in dvb-kernel cvs. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-22 03:43 mkrufky - - * v4l/Make.config: - * v4l/Makefile: - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - Create separate build option for DST in Make.config - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-20 23:54 mkrufky - - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - fix offsets - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-20 23:06 mkrufky - - * v4l/Makefile: - * v4l/compat.h: - - Enable cx24123 dvb frontend module - in merged v4l/dvb cvs trees and kernel >= 2.6.16 - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-20 15:48 mchehab - - * linux/drivers/media/video/bttv-cards.c: (identify_by_eeprom), - (winview_audio): - * linux/drivers/media/video/em28xx/em28xx-core.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - (em28xx_config_i2c): - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_irq_alsa_done), (alsa_card_saa7134_create), - (saa7134_alsa_exit): - * linux/drivers/media/video/saa7134/saa7134-oss.c: - (saa7134_dsp_create), (saa7134_oss_exit): - - This patch makes needlessly global code static. - - Signed-off-by: Adrian Bunk <bunk@stusta.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-20 02:09 mchehab - - * linux/drivers/media/video/cx25840/cx25840-core.c: - * linux/drivers/media/video/saa7127.c: - - Some funcions are now declared as static - - * linux/drivers/media/video/ir-kbd-i2c.c: - * linux/include/linux/i2c-id.h: - - Added a I2C code for InfraRed. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-18 20:15 mchehab - - * linux/drivers/media/video/cx88/cx88-core.c: - (cx88_start_audio_dma), (cx88_stop_audio_dma), (set_tvaudio): - * linux/drivers/media/video/cx88/cx88-tvaudio.c: - (set_audio_finish): - * linux/drivers/media/video/cx88/cx88.h: - - - enabled audio DMA transfer code even when DMA not in use - to solve a problem on some broken cx88 chips. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-18 14:33 nshmyrev - - * linux/drivers/media/video/bttv-driver.c: - - bttv bytes per line fix. - - Signed-off-by: Michael H. Schimek <mschimek@gmx.at> - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-11-18 14:28 nshmyrev - - * linux/drivers/media/video/bttv-driver.c: - * linux/drivers/media/video/video-buf.c: - - Fix read() bugs in bttv driver. - - Signed-off-by: Michael H. Schimek <mschimek@gmx.at> - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-11-18 15:10 mchehab - - * linux/drivers/media/video/cx88/cx88-core.c: (set_tvaudio): - - Commented code that enables audio DMA transfers at cx88-core. - - This stuff should be at cx88-alsa when ready. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-18 15:04 mchehab - - * linux/drivers/media/video/cx88/cx88-tvaudio.c: - (set_audio_start), (set_audio_finish), (set_audio_standard_NICAM), - (cx88_detect_nicam): - - - resolved problem of sporadic buzz after setting Nicam stereo - - improved setting audio standard with dma reset - - cleaned up comments format - - more sensitive Nicam detection - - Signed-off-by: Ian Pickworth <ian@pickworth.me.uk> - Signed-off-by: Michal Pytasz <pytasz@lodz.home.pl> - Signed-off-by: Marcin Rudowski <mar_rud@poczta.onet.pl> - Signed-off-by: Torsten Seeboth <Torsten.Seeboth@t-online.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-18 07:22 mchehab - - * linux/drivers/media/video/cx88/cx88-cards.c: - (hauppauge_eeprom), (cx88_card_setup): - - - removed some redundant eeprom parsing code in cx88-cards.c - (specific to Hauppauge DVB products) Instead, placed calls - directly to the single eeprom parsing function in tveeprom.c - - * linux/drivers/media/video/tveeprom.c: - (tveeprom_hauppauge_analog): - * linux/include/media/tveeprom.h: - - - added a mac address field to the tveeprom structure. - - allow callers to query the MAC address. - - Signed-off-by: Steven Toth <stoth@hauppauge.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-18 03:37 mkrufky - - * v4l/Makefile: - - em28xx needs tveeprom - - whitespace cleanup - replace some spaces with tabs - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-18 00:56 mkrufky - - * linux/Documentation/video4linux/CARDLIST.cx88: - * linux/drivers/media/video/cx88/cx88-cards.c: - * linux/drivers/media/video/cx88/cx88-input.c: - (cx88_ir_init), (cx88_ir_irq): - - Enable IR support for the Nova-S-Plus. - - Signed-off-by: Steven Toth <stoth@hauppauge.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-17 01:02 mkrufky - - * v4l_experimental/pvrusb2/Makefile: - - make v4l symlinks before attempting pvrusb2 build - - pvrusb2 depends on the rest of v4l to be present in order to - build, and it also must have access to the headers. If someone - does 'make clean' after installing their v4l modules, it will - remove the symlinks from the v4l/ directory. This ensures the - symlinks are present before trying to build experimental pvrusb2. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-16 20:15 mchehab - - * linux/drivers/media/video/tuner-simple.c: - (default_set_tv_freq): - - Video IF was removed from tuners struct. - - Each Video standard have its own Video IF frequency, so it - is related to video standard. Of course tuner also needs - saw filters for IF, but this way, similar tuners can be grouped - into just one entry, if they have the same cut-off freqs and - the same switch config and global config. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-16 19:56 mchehab - - * linux/drivers/media/video/tda9887.c: - - Added SECAM L' video standard - - * linux/drivers/media/video/tda8290.c: - * linux/include/linux/videodev2.h: - - Common std macros moved to videodev2.h - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-16 19:48 mchehab - - * linux/drivers/media/video/bttv-driver.c: (bttv_common_ioctls): - - The patch below fixes the following sparse warning: - drivers/media/video/bttv-driver.c - - Signed-off-by: Luiz Capitulino <lcapitulino@mandriva.com.br> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-16 03:30 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (alsa_card_saa7134_create), (alsa_device_init), (alsa_device_exit), - (saa7134_alsa_init): - * linux/drivers/media/video/saa7134/saa7134-core.c: - (saa7134_initdev), (saa7134_finidev): - * linux/drivers/media/video/saa7134/saa7134-oss.c: - (saa7134_dsp_create), (oss_device_init), (oss_device_exit), - (saa7134_oss_init), (saa7134_oss_exit): - * linux/drivers/media/video/saa7134/saa7134.h: - - - Fix issue with hotplugging and DMA sound (sound was lost when - replugging a card) - - Added notifiers to main saa7134 module to let the sound sub-modules - know when a card has been inserted or removed - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-14 15:09 mchehab - - * linux/drivers/media/video/videodev.c: - (video_register_device): - - - Increases the minor number limitation for vbi devices from - 223 to 255. This is in agreement with the minor number allocation - specified in Documentation/devices.txt. - - - Without this patch it is not possible to use more than 5 Hauppauge - WinTV-PVR 350 cards since each of these allocate 3 vbi devices. - - Signed-of-by: Sigmund Augdal Helberg <sigmund@snap.tv> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-14 13:25 mchehab - - * v4l_experimental/pvrusb2/Kbuild: - * v4l_experimental/pvrusb2/Makefile: - * v4l_experimental/pvrusb2/README: - * v4l_experimental/pvrusb2/pvrusb2-audio.c: - * v4l_experimental/pvrusb2/pvrusb2-audio.h: - * v4l_experimental/pvrusb2/pvrusb2-context.c: - * v4l_experimental/pvrusb2/pvrusb2-context.h: - * v4l_experimental/pvrusb2/pvrusb2-debug.h: - * v4l_experimental/pvrusb2/pvrusb2-debugifc.c: - * v4l_experimental/pvrusb2/pvrusb2-debugifc.h: - * v4l_experimental/pvrusb2/pvrusb2-eeprom.c: - * v4l_experimental/pvrusb2/pvrusb2-eeprom.h: - * v4l_experimental/pvrusb2/pvrusb2-encoder.c: - * v4l_experimental/pvrusb2/pvrusb2-encoder.h: - * v4l_experimental/pvrusb2/pvrusb2-hdw-internal.h: - * v4l_experimental/pvrusb2/pvrusb2-hdw.c: - * v4l_experimental/pvrusb2/pvrusb2-hdw.h: - * v4l_experimental/pvrusb2/pvrusb2-i2c.c: - * v4l_experimental/pvrusb2/pvrusb2-i2c.h: - * v4l_experimental/pvrusb2/pvrusb2-io.c: - * v4l_experimental/pvrusb2/pvrusb2-io.h: - * v4l_experimental/pvrusb2/pvrusb2-ioread.c: - * v4l_experimental/pvrusb2/pvrusb2-ioread.h: - * v4l_experimental/pvrusb2/pvrusb2-main.c: - * v4l_experimental/pvrusb2/pvrusb2-sysfs.c: - * v4l_experimental/pvrusb2/pvrusb2-sysfs.h: - * v4l_experimental/pvrusb2/pvrusb2-tuner.c: - * v4l_experimental/pvrusb2/pvrusb2-tuner.h: - * v4l_experimental/pvrusb2/pvrusb2-util.h: - * v4l_experimental/pvrusb2/pvrusb2-v4l2.c: - * v4l_experimental/pvrusb2/pvrusb2-v4l2.h: - * v4l_experimental/pvrusb2/pvrusb2-version.h: - * v4l_experimental/pvrusb2/pvrusb2-video.c: - * v4l_experimental/pvrusb2/pvrusb2-video.h: - * v4l_experimental/pvrusb2/pvrusb2.h: - - - Added experimental branch for pvrusb2 - - Signed-off-by: Mike Isely <isely@pobox.com> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-13 18:02 mkrufky - - * linux/Documentation/video4linux/CARDLIST.cx88: - * linux/drivers/media/video/cx88/Kconfig: - * linux/drivers/media/video/cx88/Makefile: - * linux/drivers/media/video/cx88/cx88-cards.c: - (hauppauge_eeprom_dvb), (cx88_card_setup): - * linux/drivers/media/video/cx88/cx88-dvb.c: - (cx24123_set_ts_param), (dvb_register): - * linux/drivers/media/video/cx88/cx88-mpeg.c: - (cx8802_start_dma): - * linux/drivers/media/video/cx88/cx88.h: - - Added V4L support for the Nova-S-Plus and Nova-SE2 DVB-S products. - - Basic DVB-S support is working, analog video inputs work. - - It has one or two fixme comments, - primarily analog GPIOs (audio) and eeprom parsing. - - CX24123 code (in cx88-dvb.c) disabled until the - cx24123 module is added to dvb-kernel cvs. - - Signed-off-by: Steven Toth <stoth@hauppauge.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-12 22:57 hverkuil - - * linux/drivers/media/video/compat_ioctl32.c: - - Fixed 64-bit bug: a wrongly placed return - in compat_ioctl32.c broke 32-bit compatibility ioctl support. - - * linux/drivers/media/video/em28xx/em28xx-core.c: - - Fix a 64-bit compile warning due to a wrong printk format. - - * v4l/compat.h: - - Fixed 2.6.13 support: kzalloc appeared in 2.6.14, not - 2.6.13. Also added missing smp_lock.h #include. - - Signed-off-by: hverkuil <hverkuil@xs4all.nl> - -2005-11-12 00:06 mchehab - - * linux/drivers/media/video/Makefile: - - Fixed broken dependency needed for sa7134 module. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-11 21:26 mkrufky - - * linux/drivers/media/video/cx25840/cx25840-firmware.c: - - Ensure consistent v4l firmware prefixes. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-11 20:32 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_irq_alsa_done), (snd_card_saa7134_capture_trigger), - (dsp_buffer_free), (snd_card_saa7134_capture_prepare), - (snd_card_saa7134_hw_params), (snd_card_saa7134_hw_free), - (snd_card_saa7134_capture_close), (snd_saa7134_volume_put), - (snd_saa7134_capsrc_get), (snd_saa7134_free), - (alsa_card_saa7134_create): - - - Applied changes suggested by ALSA's Takashi Iwai - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-11 15:39 mkrufky - - * linux/drivers/media/video/saa7134/Kconfig: - - Don't DEPEND on SND_PCM_OSS. Instead, SELECT it. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-11 09:36 nshmyrev - - * linux/drivers/media/video/compat_ioctl32.c: - - - Hope, it's last patch to build compat_ioctl32.c. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-11-11 06:59 nshmyrev - - * linux/drivers/media/video/compat_ioctl32.c: - - - More build fixes for compat_ioctl32. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-11-11 01:23 mkrufky - - * linux/drivers/media/video/saa7127.c: (saa7127_set_vps), - (saa7127_set_cc), (saa7127_set_xds), (saa7127_set_wss), - (saa7127_set_video_enable), (saa7127_set_std), - (saa7127_set_output_type), (saa7127_set_input_type): - - Remove unneeded (and undesirable) casts. - - Cc: Hans Verkuil <hverkuil@xs4all.nl> - Cc: Chris Kennedy <c@groovy.org> - Cc: Kevin Thayer <nufan_wfk@yahoo.com> - Cc: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - Signed-off-by: Andrew Morton <akpm@osdl.org> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-10 22:40 mkrufky - - * linux/drivers/media/video/saa7134/Kconfig: - - Prevent the following build warnings: - - *** Warning: "snd_card_free" - *** Warning: "snd_card_register" - *** Warning: "snd_device_new" - *** Warning: "snd_card_new" - *** Warning: "snd_ctl_add" - *** Warning: "snd_ctl_new1" - *** Warning: "snd_pcm_set_ops" - *** Warning: "snd_pcm_new" - *** Warning: "snd_pcm_lib_ioctl" - *** Warning: "snd_pcm_hw_constraint_integer" - *** Warning: "snd_pcm_stop" - *** Warning: "snd_pcm_period_elapsed" - [drivers/media/video/saa7134/saa7134-alsa.ko] undefined! - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-10 22:24 mkrufky - - * linux/drivers/media/video/em28xx/Kconfig: - - revert akpm's patch, thanks to the - previous patch from Dave Jones. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-10 22:21 mkrufky - - * linux/drivers/media/video/saa711x.c: - - removed #include <asm/segment.h> - - This breaks compilation on non-x86 architectures, - and isn't even used. - - Signed-off-by: Dave Jones <davej@redhat.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-10 20:41 nshmyrev - - * linux/drivers/media/video/compat_ioctl32.c: (native_ioctl): - - Use f_op field of struct file instead of strange f_ops. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-11-10 19:30 mchehab - - * linux/drivers/media/video/cx25840/cx25840-core.c: - * linux/drivers/media/video/saa7115.c: - * linux/drivers/media/video/saa7127.c: - * linux/drivers/media/video/wm8775.c: - - - Fixes MODULE_AUTHORSHIP. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-10 17:00 mkrufky - - * linux/drivers/media/video/em28xx/Kconfig: - - saa711x is busted on ppc64 - - drivers/media/video/saa711x.c:39:25: asm/segment.h: - No such file or directory - - Cc: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - Cc: Michael Krufky <mkrufky@m1k.net> - Cc: Johannes Stezenbach <js@linuxtv.org> - Signed-off-by: Andrew Morton <akpm@osdl.org> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-10 16:58 mkrufky - - * linux/drivers/media/video/saa7134/saa7134-oss.c: - (saa7134_dsp_create): - - cleanup whitespace - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-10 12:33 mchehab - - * linux/drivers/media/video/em28xx/em28xx-input.c: - (get_key_em_haup): - - Commented the code to avoid repeating events when - pressing IR keys. - * linux/drivers/media/video/em28xx/em28xx-video.c: - - Included explicit compat_ioctl32 handler. - - * linux/drivers/media/video/bttv-driver.c: - * linux/drivers/media/video/cx88/cx88-video.c: - * linux/drivers/media/video/saa7134/saa7134-video.c: - - Fixed compiling with kernels older than 2.6.11. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-10 02:27 rmcc - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - * linux/drivers/media/video/saa7134/saa7134.h: - - - Added new saa7134 card (MSI TV@anywhere plus) - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-09 21:51 nshmyrev - - * linux/drivers/media/video/saa7134/saa7134-oss.c: - (saa7134_dsp_create): - * v4l/compat.h: - - - Fix backward kernel compatibity. - - Thanks-to: Tyler Trafford <tatrafford@comcast.net> - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-11-09 19:15 trafford - - * linux/driver/media/video/cx25840/cx25840-firmware.c: - - - Change default filename of firmware image to 'cx25840.fw' - - Signed-off-by: Tyler Trafford <tatrafford@comcast.net> - -2005-11-09 19:09 rmcc - - * linux/drivers/media/video/compat_ioctl32.c: - * v4l/Makefile: - - - Add compat_ioctl32 to install process - - Set module license - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-09 19:04 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (alsa_card_saa7134_create): - - - Fix saa7134-alsa spinlock bug - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-09 18:21 mchehab - - * linux/drivers/media/video/Makefile: - * linux/drivers/media/video/bttv-driver.c: - * linux/drivers/media/video/cx88/cx88-video.c: - * linux/drivers/media/video/saa7134/Makefile: - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_alsa_irq), (alsa_card_saa7134_create): - * linux/drivers/media/video/saa7134/saa7134-core.c: - (saa7134_irq): - * linux/drivers/media/video/saa7134/saa7134-oss.c: - (saa7134_oss_irq), (saa7134_oss_init1), (saa7134_dsp_create), - (saa7134_oss_init), (saa7134_oss_exit): - * linux/drivers/media/video/saa7134/saa7134-video.c: - * linux/include/linux/videodev2.h: - * v4l/Makefile: - - This moves the 32 bit ioctl compatibility handlers for - Video4Linux into a new file and adds explicit calls to them - to each v4l device driver. - - - Unfortunately, there does not seem to be any code handling - the v4l2 ioctls, so quite often the code goes through two - separate conversions, first from 32 bit v4l to 64 bit v4l, - and from there to 64 bit v4l2. My patch does not change - that, so there is still much room for improvement. - - - Also, some drivers have additional ioctl numbers, for - which the conversion should be handled internally to - that driver. - - Signed-off-by: Arnd Bergmann <arnd@arndb.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-09 11:44 mchehab - - * linux/drivers/media/video/cx25840/Makefile: - - Makefile for cx25840 boards - - * v4l/Makefile: - - included newer video decoders on make install - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-09 04:00 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_irq_alsa_done), (snd_card_saa7134_capture_trigger), - (snd_card_saa7134_capture_prepare), - (snd_card_saa7134_capture_pointer), - (snd_card_saa7134_runtime_free), (snd_card_saa7134_capture_open), - (snd_saa7134_capsrc_get): - - - Removed some superfluous code in saa7134-alsa - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-09 03:25 rmcc - - * linux/drivers/media/video/saa7134/Makefile: - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_alsa_irq), (snd_card_saa7134_capture_trigger), - (dsp_buffer_init), (snd_card_saa7134_capture_prepare), - (snd_card_saa7134_capture_pointer), - (snd_card_saa7134_capture_close), (snd_card_saa7134_capture_open), - (snd_saa7134_capsrc_put), (snd_saa7134_dev_free), - (alsa_card_saa7134_create), (saa7134_alsa_init): - * linux/drivers/media/video/saa7134/saa7134-core.c: - (pending_call), (request_module_depend), (saa7134_irq), - (saa7134_hwinit1), (saa7134_hwfini), (saa7134_initdev), - (saa7134_finidev): - * linux/drivers/media/video/saa7134/saa7134-oss.c: (dsp_ioctl), - (mixer_ioctl), (saa7134_oss_irq), (saa7134_oss_init1), - (saa7134_irq_oss_done), (saa7134_dsp_create), (saa7134_oss_init), - (saa7134_oss_exit): - * linux/drivers/media/video/saa7134/saa7134.h: - * v4l/Makefile: - - - saa7134-oss is now a standalone module - - all DMA sound stuff has been removed from the core saa7134 module - - Lots of cleanups and variable renames to get some consistency - between OSS and ALSA drivers - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-09 02:57 mchehab - - * linux/drivers/media/video/Kconfig: - * linux/drivers/media/video/Makefile: - * linux/drivers/media/video/cx25840/Makefile: - - - Added compiler options for cx25840, saa7115 and saa7127 - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-09 02:54 mchehab - - * linux/drivers/media/video/Makefile: - * linux/drivers/media/video/cx25840/Makefile: - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-09 02:30 mchehab - - * linux/drivers/media/video/tda8290.c: (set_audio): - - - Added support for SECAM L' - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-09 01:32 mchehab - - * linux/drivers/media/video/saa7115.c: - - - Adds support for saa7115 video decoder. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Chris Kennedy <c@groovy.org> - Thanks-to: Kevin Thayer <nufan_wfk@yahoo.com> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-09 01:27 mchehab - - * v4l/Make.config: - * v4l/Makefile: - - - Added new video decoders to makefile. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-09 00:56 mchehab - - * linux/drivers/media/video/cx25840/cx25840-audio.c: - * linux/drivers/media/video/cx25840/cx25840-core.c: - * linux/drivers/media/video/cx25840/cx25840-firmware.c: - * linux/drivers/media/video/cx25840/cx25840-vbi.c: - * linux/drivers/media/video/cx25840/cx25840.h: - - - Adds support for cx25840 video decoder. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Chris Kennedy <c@groovy.org> - Signed-off-by: Tyler Trafford <tatrafford@comcast.net> - Thanks-to: Ulf Eklund <ivtv@eklund.to>. - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-09 00:48 mchehab - - * linux/include/media/v4l2-common.h: - - - Adds a new include for internal V4L2 ioctls and API - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-09 00:39 mchehab - - * linux/drivers/media/video/saa7127.c: - - - Added driver for saa7127 video decoder. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Chris Kennedy <c@groovy.org> - Thanks-to: Kevin Thayer <nufan_wfk@yahoo.com> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-09 00:13 mchehab - - * linux/drivers/media/video/tuner-core.c: (tuner_fixup_std): - * linux/include/linux/videodev2.h: - - Added Secam L' video standard and parameter on tuner. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-08 21:05 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_irq_alsa_done): - - - Remove superfluous dma_stop() call - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-08 17:56 nshmyrev - - * linux/drivers/media/video/bttv-cards.c: (bttv_init_card2): - * linux/drivers/media/video/bttv-driver.c: (bttv_irq): - * linux/drivers/media/video/bttv-gpio.c: (bttv_any_irq): - * linux/drivers/media/video/bttv.h: - * linux/drivers/media/video/bttvp.h: - * linux/drivers/media/video/ir-kbd-gpio.c: (rc5_decode), - (ir_rc5_irq), (ir_rc5_timer_end), (ir_rc5_timer_keyup), (ir_probe), - (ir_remove): - - Support for Nebula rc5-based gpio remote. - - Signed-off-by: Mark Weaver <mark-clist@npsl.co.uk> - -2005-11-08 17:51 nshmyrev - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - - Fix compilation with 2.6.8. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-11-08 17:46 nshmyrev - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - * v4l/compat.h: - - Fix compilation with older kernels. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-11-08 16:48 nshmyrev - - * linux/Documentation/video4linux/CARDLIST.bttv: - * linux/Documentation/video4linux/CARDLIST.tuner: - * linux/drivers/media/video/bttv-cards.c: - * linux/drivers/media/video/bttv.h: - * linux/drivers/media/video/ir-kbd-i2c.c: - * linux/drivers/media/video/tuner-simple.c: - * linux/include/media/tuner.h: - - Support for Sabrent bt848 version. - - Signed-off-by: Bill Pechter <pechter@gmail.com> - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-11-08 16:33 rmcc - - * linux/drivers/media/common/ir-common.c: - * linux/drivers/media/video/ir-kbd-i2c.c: (get_key_pinnacle): - * linux/drivers/media/video/saa7134/saa7134-core.c: - (saa7134_hwinit2): - * linux/drivers/media/video/saa7134/saa7134-input.c: - * linux/include/media/ir-common.h: - * linux/include/media/ir-kbd-i2c.h: - - - The pinnacle handler & remote are common to saa7134 PCI boards - and em28xx USB boards, so the keymap was moved to ir-common and the - keyhandler is back to ir-kbd-i2c - - request_module("ir-kbd-i2c") is no longer necessary at saa7134-core - since saa7134.ko now depends on ir-kbd-i2c.ko to get the keyhandler - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-08 14:01 mchehab - - * linux/drivers/media/video/Kconfig: - * linux/drivers/media/video/Makefile: - - Added compiling options for wm8775 and cs53l32a chips. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-08 13:23 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (snd_card_saa7134_capture_prepare), (snd_card_saa7134_hw_params), - (snd_saa7134_capsrc_put), (snd_saa7134_free), - (snd_saa7134_dev_free), (alsa_card_saa7134_create): - - - SAA7134/ALSA IRQ management improvements - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-08 13:10 mchehab - - * v4l/Makefile: - - distclean now cleans also .orig and .rej files - - make update updates from CVS - - make snapshot now distcleans and updates. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-08 00:30 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_dma_stop), (alsa_card_saa7134_create), - (saa7134_alsa_init): - * linux/drivers/media/video/saa7134/saa7134-core.c: - (saa7134_initdev): - - - Fix multiple board support in saa7134-alsa - - Minor comment updates - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-07 23:02 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_alsa_irq), (snd_saa7134_free), (alsa_card_saa7134_create): - - - Fix nasty IRQ hook bug. - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-07 20:20 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_dma_stop), (saa7134_dma_start), (saa7134_irq_alsa_done), - (dsp_buffer_conf), (dsp_buffer_init), - (snd_card_saa7134_capture_prepare), - (snd_card_saa7134_capture_pointer), (dsp_buffer_free), - (snd_card_saa7134_capture_close), (snd_card_saa7134_capture_open), - (snd_saa7134_capsrc_put): - * linux/drivers/media/video/saa7134/saa7134-core.c: - (saa7134_set_dmabits), (saa7134_initdev), (saa7134_finidev): - * linux/drivers/media/video/saa7134/saa7134-oss.c: - (dsp_buffer_conf), (dsp_buffer_init), (dsp_buffer_free), - (dsp_dma_start), (dsp_dma_stop), (dsp_rec_start), (dsp_rec_stop), - (dsp_open), (dsp_release), (dsp_read), (dsp_ioctl), (dsp_poll), - (mixer_recsrc_7134), (mixer_recsrc_7133), (mixer_recsrc), - (mixer_open), (mixer_ioctl), (saa7134_oss_init1), - (saa7134_irq_oss_done): - * linux/drivers/media/video/saa7134/saa7134.h: - - - DMA sound struct has been renamed from "oss" to "dmasound" to better - reflect the fact that it is common to both OSS and ALSA - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-07 20:15 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (snd_card_saa7134_capture_trigger), - (snd_card_saa7134_capture_prepare), - (snd_card_saa7134_capture_close), (alsa_card_saa7134_create), - (saa7134_alsa_exit): - - - More ALSA-proposed changes - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-07 19:04 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_irq_alsa_done), (snd_card_saa7134_capture_prepare), - (snd_card_saa7134_capture_close), (snd_card_saa7134_capture_open), - (snd_saa7134_volume_get), (alsa_card_saa7134_create), - (saa7134_alsa_init): - - - Applied some of the changes proposed by the ALSA team - - dsp_nr replaced by ALSA's index[] - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-07 03:32 rmcc - - * linux/drivers/media/video/saa7134/saa7134-core.c: - (pending_call), (saa7134_initdev): - - - saa7134-alsa can only be autoloaded after saa7134 is active - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-07 02:28 rmcc - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_irq_alsa_done), (saa7134_alsa_irq), - (snd_saa7134_capsrc_put), (alsa_card_saa7134_create), - (saa7134_alsa_init), (saa7134_alsa_exit): - * linux/drivers/media/video/saa7134/saa7134-core.c: - (saa7134_irq), (saa7134_initdev), (saa7134_finidev): - * linux/drivers/media/video/saa7134/saa7134-tvaudio.c: - * linux/drivers/media/video/saa7134/saa7134.h: - * v4l/Makefile: - - - saa7134-alsa is now a standalone module - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-06 20:39 mchehab - - * v4l/Make.config: - * v4l/Makefile: - - - Adds CONFIG_ADV_DEBUG flag to enable advanced debug stuff. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-06 16:57 mchehab - - * linux/drivers/media/video/bttv-cards.c: - * linux/drivers/media/video/bttv-driver.c: - * linux/drivers/media/video/cx88/cx88-core.c: - * linux/drivers/media/video/cx88/cx88-video.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/media/video/msp3400.c: (msp_suspend): - * linux/drivers/media/video/saa7134/saa7134-core.c: - * linux/drivers/media/video/saa7134/saa7134-empress.c: - * linux/drivers/media/video/tda9887.c: (tda9887_suspend): - * v4l/compat.h: - - #elsif removed, since it breaks gentree stuff. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-06 15:36 mchehab - - * linux/drivers/media/video/msp3400.c: (msp_command): - - - msp3400 cleanups - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-06 13:06 mchehab - - * linux/drivers/media/video/saa7134/Makefile: - - Fixes saa7134-alsa build inside saa7134 driver. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-06 05:46 mchehab - - * linux/drivers/media/video/em28xx/em28xx-core.c: - (em28xx_set_alternate): - * linux/drivers/media/video/em28xx/em28xx-video.c: - (em28xx_init_dev), (em28xx_usb_probe), (em28xx_usb_disconnect): - * linux/drivers/media/video/em28xx/em28xx.h: - - Fixed autodetection of max size by if alternate setting - - Fixed some debug messages - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-06 03:43 mchehab - - * linux/drivers/media/video/cx88/cx88-tvaudio.c: - (set_audio_start), (set_audio_finish), (set_audio_standard_NICAM), - (cx88_set_tvaudio): - - - Improves the audio handling for NICAM on cx88 audio. - - Signed-off-by: Torsten Seeboth <Torsten.Seeboth@t-online.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-06 03:37 mchehab - - * linux/drivers/media/video/msp3400.c: (msp3400c_reset), - (msp3400c_read), (msp3400c_write), (msp3400c_set_scart), - (msp3400c_setvolume), (msp3400c_setbass), (msp3400c_settreble), - (msp3400c_setmode), (msp3400c_setstereo), (msp3400c_print_mode), - (autodetect_stereo), (msp3400c_thread), (msp34xx_modus), - (msp3410d_thread), (msp34xxg_reset), (msp34xxg_thread), - (msp34xxg_set_source), (msp34xxg_detect_stereo), (msp_attach), - (msp_command), (msp_suspend), (msp_resume): - - - Improves msp3400 debug messages. - Now, all kernel message in msp3400.c use the same prefix - and include the I2C bus to differentiate between multiple - msp3400 I2C chips. - - Correctly prints the chip identifier for the msp44xx chips. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-06 03:24 mchehab - - * linux/drivers/media/video/msp3400.c: (msp_command): - - - Adds missing msp34xxg_reset to VIDIOC_S_STD (just like VIDIOCSCHAN). - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-05 23:20 mchehab - - * linux/drivers/media/video/msp3400.c: (msp3400c_set_scart), - (msp_command): - - Fixes set_scart parameter definitions and AUDOUT ioctl - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-05 09:40 mchehab - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/cs53l32a.c: (cs53l32a_probe): - * linux/drivers/media/video/wm8775.c: (wm8775_probe): - * v4l/Makefile: - - Fixes compilation problems due removal of media/id.h and I2C_ALGO_BIT - - adds both modules to the inst_video list in the Makefile so that - they are installed. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-05 03:04 rmcc - - * linux/drivers/media/video/saa7134/saa7134-cards.c: - (saa7134_board_init1): - * linux/drivers/media/video/saa7134/saa7134-input.c: - (saa7134_input_init1): - * linux/drivers/media/video/saa7134/saa7134.h: - - - Use less-generic name for saa7134 card #79 - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-05 02:42 rmcc - - * linux/drivers/media/video/saa7134/saa7134-cards.c: - (saa7134_board_init1): - * linux/drivers/media/video/saa7134/saa7134-core.c: - (saa7134_hwinit2): - * linux/drivers/media/video/saa7134/saa7134-input.c: - (saa7134_input_init1), (saa7134_set_i2c_ir): - * linux/drivers/media/video/saa7134/saa7134.h: - - - SAA713x cards with i2c remotes now autoload ir-kbd-i2c - (disable_ir works, as for GPIO remotes) - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-11-04 14:21 mchehab - - * linux/drivers/media/video/Makefile: - * linux/drivers/media/video/em28xx/Makefile: - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/media/video/ir-kbd-i2c.c: (ir_probe): - - Miscelaneous fixes for em28xx - - I2C hardware named changed to wright value. - - utsname included to em28xx-video.c - - Makefile fixes. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-04 14:19 mchehab - - * linux/include/linux/videodev2.h: - - Added support for NTSC 4.43 video standard. - - Signed-off-by: Tyler Trafford <tatrafford@comcast.net> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-04 14:16 mchehab - - * linux/drivers/media/video/Makefile: - * linux/drivers/media/video/em28xx/Makefile: - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/media/video/ir-kbd-i2c.c: (ir_probe): - * linux/drivers/media/video/saa7134/saa7134-dvb.c: - (philips_tda827xa_pll_sleep): - * linux/include/linux/videodev2.h: - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-04 13:52 mchehab - - * linux/drivers/media/video/saa7134/saa7134-dvb.c: - (philips_tda827xa_pll_sleep): - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-04 13:50 mchehab - - * linux/drivers/media/video/em28xx/em28xx-cards.c: - (em28xx_card_setup): - * linux/drivers/media/video/msp3400.c: (msp3400c_set_scart), - (msp3410d_thread), (msp34xxg_reset), (msp34xxg_thread), - (msp_attach), (msp_command): - * linux/include/linux/videodev2.h: - - Adds support for digital output for WinTV USB2 board. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-04 05:07 mkrufky - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/saa7134/saa7134-dvb.c: - (philips_tda827xa_pll_sleep): - - Updated CARDLIST and strip trailing whitespace. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-03 23:10 hhackmann - * linux/drivers/media/video/saa7134/saa7134-cards.c - * linux/drivers/media/video/saa7134/saa7134-dvb.c - - - added dvb-t support for Asus P7134 Dual - - added pci id for ADS Tech Instant TV cardbus variant - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> - -2005-11-03 22:11 mchehab - - * linux/drivers/media/video/em28xx/em28xx-cards.c: - (em28xx_card_setup): - - Some cleanups and audio amux adjust. - * linux/drivers/media/video/em28xx/em28xx-core.c: - (em28xx_set_alternate): - - em28xx will allways try, by default, the biggest size alt. - * linux/drivers/media/video/em28xx/em28xx-video.c: (video_mux), - (em28xx_v4l2_open), (em28xx_v4l2_close), (em28xx_v4l2_read), - (em28xx_v4l2_poll), (em28xx_v4l2_mmap), (em28xx_stream_interrupt), - (em28xx_do_ioctl), (em28xx_video_do_ioctl): - - Fixes audio mux code. - - Fixes some logs. - * linux/drivers/media/video/msp3400.c: (msp3400c_set_scart), - (msp_command): - - added a hack to allow using I2S output (commented). - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-11-03 19:58 nshmyrev - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - * linux/drivers/media/video/saa7134/saa7134-dvb.c: - (philips_tda827xa_pll_set), (philips_tda827xa_pll_sleep): - * linux/drivers/media/video/saa7134/saa7134-input.c: - (saa7134_input_init1): - - Remote and more info for PCTV Cardbus. Whitespace cleanup. - - Signed-off-by: Pavel Mihaylov <bin@bash.info> - -2005-11-01 22:10 hhackmann - * linux/include/media/tuner.h - * linux/drivers/media/video/saa7134/saa7134.h - * linux/drivers/media/video/saa7134/saa7134-cards.c - * linux/drivers/media/video/saa7134/saa7134-dvb.c - - - added dvb-t support for tda8275a - - added Philips Tiger reference design - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> - -2005-11-02 13:25 mkrufky - - * linux/drivers/media/video/Makefile: - - saa6588.c should build saa6588.ko, rather than rds.ko - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-02 05:10 mkrufky - - * linux/drivers/media/video/cx88/cx88-dvb.c: - (nxt200x_set_pll_input): - - Added function for nxt200x to change pll input - - Signed-off-by: Kirk Lapray <kirk.lapray@gmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-02 00:39 mkrufky - - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - fix fuzz & offsets. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-02 00:17 mkrufky - - * linux/drivers/media/video/saa6588.c: (block_to_buf): - - fix RDS raw data buffer handling bug, which caused - decoding delays and sometimes wrong data. - - Signed-off-by: Hans J. Koch <koch@hjk-az.de> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-02 00:15 mkrufky - - * linux/drivers/media/video/tda8290.c: (tda8290_tune), - (set_audio): - - removed trailing whitespace. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-11-01 22:10 hhackmann - - * linux/driversmedia/video/tda8290.c - - fixed tda8290 SECAM-L - - added some debugging info - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> - -2005-10-31 16:09 nshmyrev - - * linux/drivers/media/video/cx88/cx88-cards.c: - * linux/drivers/media/video/cx88/cx88-cards.h: - * linux/Documentation/video4linux/CARDLIST.cx88: - - New Avermedia 303 card (without radio). - - Signed-off-by: Lubomir Bulej <bulej@nenya.ms.mff.cuni.cz> - -2005-10-31 13:34 rmcc - - * linux/drivers/media/video/bttv-cards.c: - - - Work-around to allow hybrid DVB card to autoload the tda9887 - tuner module - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-10-31 13:32 rmcc - - * linux/drivers/media/video/bttv-i2c.c: - * linux/drivers/media/video/tuner-core.c: - - - Rollback recent i2c change to solve tuner detection breakage - - Fix in tuner-core to prevent setting the tuner type for an - already configured tuner - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-10-31 12:52 mkrufky - - * linux/drivers/media/video/cx88/cx88-tvaudio.c: - (set_audio_standard_NICAM): - - correct nicam audio settings to match dscaler - - Thanks to: Ian Pickworth <ian@pickworth.me.uk> - and Torsten Seeboth <Torsten.Seeboth@t-online.de> - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-31 04:28 mkrufky - - * linux/drivers/media/video/em28xx/Makefile: - - change CONFIG_EM28XX to CONFIG_VIDEO_EM28XX - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-30 21:55 mkrufky - - * linux/drivers/media/video/Kconfig: - * linux/drivers/media/video/Makefile: - * linux/drivers/media/video/em28xx/Kconfig: - * linux/drivers/media/video/em28xx/Makefile: - - add em28xx to kernel build. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-30 17:53 mchehab - - * linux/drivers/media/video/saa711x.c: - - saa7113 renamed to saa711x - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-30 17:42 mchehab - - * linux/include/linux/i2c-id.h: - - Updated to reflect the newer drivers. - - * linux/include/media/id.h: - - Removed since codes should be at i2c-id.h - - saa7115 not migrated since should be merged with - newer saa711x code. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-30 17:35 mchehab - - * linux/drivers/media/video/em28xx/em28xx-cards.c: - * linux/drivers/media/video/em28xx/em28xx-core.c: - * linux/drivers/media/video/em28xx/em28xx-i2c.c: - * linux/drivers/media/video/em28xx/em28xx-input.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/media/video/em28xx/em28xx.h: - - Renamed common structures to em28xx - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-30 17:16 mchehab - - * linux/drivers/media/video/bt832.c: - * linux/drivers/media/video/msp3400.c: - * linux/drivers/media/video/saa6588.c: - * linux/drivers/media/video/saa7134/saa6752hs.c: - * linux/drivers/media/video/saa7134/saa7134.h: - * linux/drivers/media/video/tda7432.c: - * linux/drivers/media/video/tda9875.c: - * linux/drivers/media/video/tda9887.c: - * linux/drivers/media/video/tvaudio.c: - * linux/drivers/media/video/tveeprom.c: - * linux/include/linux/i2c-id.h: - * linux/include/media/id.h: - - Second round of i2c IDs redefinition cleanup. - - Signed-off-by: Jean Delvare <khali@linux-fr.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-30 17:11 mchehab - * v4l/Makefile: - - Fix em28xx instalation. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-29 14:31 mkrufky - - * v4l/Makefile: - - removed drivers/usb/media symlink process from 'make links' - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-29 02:18 mkrufky - - * linux/drivers/media/video/cx88/Kconfig: - - VIDEO_CX88 need not depend on EXPERIMENTAL - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-29 01:59 mkrufky - - * v4l/scripts/cardlist: - - write to CARDLIST.em28xx instead of CARDLIST.em2820 - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-29 01:53 mkrufky - - * v4l/Make.config: - * v4l/Makefile: - - CONFIG_EM28xx changed to CONFIG_EM28XX - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-28 21:01 mchehab - - * linux/Documentation/video4linux/CARDLIST.em28xx: - * linux/drivers/media/video/em28xx/em28xx-cards.c: - * linux/drivers/media/video/em28xx/em28xx-core.c: - * linux/drivers/media/video/em28xx/em28xx-i2c.c: - * linux/drivers/media/video/em28xx/em28xx-input.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - * v4l/Make.config: - * v4l/Makefile: - * v4l/scripts/cardlist: - * v4l/scripts/em2820.pl: - - module em2820 renamed to em28xx and moved to V4L dir. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-28 20:52 mchehab - - * linux/Documentation/video4linux/CARDLIST.em2820: - * linux/drivers/media/video/em28xx/em28xx-cards.c: - * linux/drivers/media/video/em28xx/em28xx-core.c: - * linux/drivers/media/video/em28xx/em28xx-i2c.c: - * linux/drivers/media/video/em28xx/em28xx-input.c: - * linux/drivers/media/video/em28xx/em28xx-video.c: - * linux/drivers/usb/media/em2820-cards.c: - * linux/drivers/usb/media/em2820-core.c: - * linux/drivers/usb/media/em2820-i2c.c: - * linux/drivers/usb/media/em2820-input.c: - * linux/drivers/usb/media/em2820-video.c: - * linux/drivers/usb/media/em2820.h: - * v4l/Make.config: - * v4l/Makefile: - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-28 11:46 mchehab - - * linux/include/linux/videodev2.h: - - Moved some user defines to be out of __KERNEL__ define. - - Signed-off-by: Michael Schimek <mschimek@gmx.at> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-27 20:12 mchehab - - * linux/drivers/media/video/bttv-cards.c: (bttv_init_card2): - * linux/drivers/media/video/bttv-i2c.c: (attach_inform): - * linux/drivers/media/video/tuner-core.c: (check_mode): - - Some cleanups at I2C stuff and fixing when tuner addr is set. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-27 19:28 nshmyrev - - * linux/drivers/media/video/tuner-core.c: (tuner_command): - - Quick and dirty fix for AUDC_CONFIG_PINNACLE. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-27 14:57 mkrufky - - * linux/drivers/media/video/saa7134/saa7134-cards.c: - - Updated comments for AVerTVHD A180 - - Uses Alps Electric TDHU2, containing NXT2004 ATSC Decoder - AFAIK, there is no analog demod, thus, - no support for analog television. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-27 12:19 mchehab - - * linux/drivers/media/video/bttv-cards.c: - * linux/drivers/media/video/bttv-i2c.c: (attach_inform): - - - Fixed bttv to accept radio devices like tea5767 - - Enabled radio on card #137 (it's a tea5767, and it's now working) - - Corrected tuner for card #137 (It's a Tena TNF9533-B/DF, not a Philips) - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-27 06:22 mkrufky - - * linux/drivers/media/video/saa7134/Kconfig: - * linux/drivers/media/video/saa7134/Makefile: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - * linux/drivers/media/video/saa7134/saa7134-dvb.c: (dvb_init): - * v4l/Makefile: - - Added DVB support for AVerTVHD MCE A180 - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-27 04:50 mkrufky - - * linux/drivers/media/video/tuner-simple.c: - (default_set_tv_freq): - - ISO C90 forbids mixed declarations and code - - * v4l/compat.h: - - Do not build support for nxt200x unless at least one of the - following is true: - - a) KERNEL_VERSION >= 2.6.15 - b) v4l / dvb merge-trees build environment. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-27 04:27 mkrufky - - * linux/drivers/media/video/cx88/Kconfig: - * linux/drivers/media/video/cx88/Makefile: - * linux/drivers/media/video/cx88/cx88-dvb.c: - (nxt200x_set_ts_param), (dvb_register): - * v4l/Makefile: - - Added support for NXT200X based cards (ATI HDTV Wonder) - - * linux/drivers/media/video/cx88/cx88-cards.c: - (cx88_card_setup): - - Cleaned up initialization of ATI HDTV Wonder. The card is now - able to work in analog or digital mode and able to switch - between them without any problems. - - * linux/drivers/media/video/tuner-simple.c: - (default_set_tv_freq): - - Fixed value in "Philips TUV1236D ATSC/NTSC dual in" tuner data. - - When tuning the "Philips TUV1236D ATSC/NTSC dual in" tuner, - make sure that we are in the correct tuning mode. - - Signed-off-by: Kirk Lapray <kirk.lapray@gmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-26 21:26 mchehab - - * linux/drivers/media/video/bttv-i2c.c: (attach_inform): - - Correcting fixes to accept radio devices like tea5767. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-26 21:00 nshmyrev - - * linux/drivers/media/video/mt20xx.c: (mt2050_set_radio_freq): - - Fix bug with setting mt2050 radio frequency - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-26 19:42 mchehab - - * linux/drivers/media/video/bttv-i2c.c: (attach_inform): - - Fixed to accept radio devices like tea5767. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-26 12:59 mchehab - - * linux/drivers/usb/media/em2820-core.c: - (em2820_isoc_video_copy), (em2820_isocIrq): - - Improved isoc error detection. - - Thanks-to: Stefan Kristiansson <stefan@langante.mine.nu> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-26 12:31 mchehab - - * linux/Documentation/video4linux/CARDLIST.em2820: - * linux/drivers/usb/media/em2820-cards.c: (em2820_card_setup): - * linux/drivers/usb/media/em2820.h: - - Added Pinnacle Dazzle DVC 90 - - Thanks-to: Stefan Kristiansson <stefan@langante.mine.nu> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-25 21:18 mkrufky - - * v4l/Make.config: - * v4l/Makefile: - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - Revert build changes with respect to saa7134-alsa. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-25 19:24 nshmyrev - - * linux/drivers/media/video/cx88/cx88-alsa.c: - (snd_cx88_pointer), (snd_cx88_create): - - Fix build warnings and errors. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-25 18:48 mkrufky - - * v4l/Makefile: - - obj-$(CONFIG_VIDEO_SAA7134) += saa7134-alsa.o - + saa7134-objs += saa7134-alsa.o - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-25 17:24 nshmyrev - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - - Fix compilation with 2.6.8. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-25 16:51 mkrufky - - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - fix offsets - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-25 16:33 mkrufky - - * v4l/Make.config: - * v4l/Makefile: - - don't build saa7134-alsa if CONFIG_VIDEO_ALSA is disabled. - - enable CONFIG_VIDEO_ALSA by default - - don't build cx88-alsa if CONFIG_VIDEO_ALSA_TESTING is disabled. - - Thanks to pentium451 (irc nick), for pointing out this bug. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-25 12:16 mchehab - - * linux/drivers/media/video/cs53132a.c: - - module renamed to cs53l32ac. - - * linux/drivers/usb/media/em2820-i2c.c: (em2820_i2c_eeprom): - - New debug info from em2820 eeprom - - * linux/drivers/usb/media/em2820-video.c: (em2820_init_dev), - (em2820_usb_probe): - - Fixed request_module to the newer name for saa711x - - module info messages improved to show audio interfaces. - - * v4l/Makefile: - - Fixed to compile cx53l32ac instead of cx53132ac. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-24 03:13 mkrufky - - * linux/drivers/media/video/Kconfig: - - Improve Kconfig user-friendliness for hybrid dvb/v4l boards. - - Allow users to select dvb-bt8xx as a subheading of - VIDEO_BT848 in the video4linux menu, to be consistant - with cx88-dvb and saa7134-dvb. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-25 01:31 mkrufky - - * linux/drivers/media/video/Kconfig: - - Move cx88 and saa7134 configuration out of - drivers/media/video/Kconfig and instead, use - new Kconfig files in each respective directory. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-25 01:08 mkrufky - - * linux/drivers/media/video/Kconfig: - - saa7134-dvb should not select cx22702 - - This patch is already in 2.6.14-rc5-git3 - commit: c0fef676bbd75e711711ed3ff5bebb7bfd1bdb00 - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Andrew Morton <akpm@osdl.org> - Signed-off-by: Linus Torvalds <torvalds@osdl.org> - -2005-10-25 00:53 mkrufky - - * linux/drivers/media/video/Kconfig: - * linux/drivers/media/video/Makefile: - - imported from 2.6.14-rc5 - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-24 23:30 nshmyrev - - * linux/Documentation/video4linux/API.html: - * linux/drivers/media/video/tuner-core.c: (tuner_attach): - - Fixed broken API link and indentation. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-23 23:09 mrechberger - - * linux/drivers/usb/media/em2820-video.c: - * linux/drivers/usb/media/em2820-core.c: - - Update em2800 scaler code and comments based on info from empiatech - - Signed-off-by: Sascha Sommer <saschasommer@freenet.de> - -2005-10-23 23:00 hhackmann - * linux/drivers/media/video/tuner-core.c: - - - fixed tda8290 detection bug - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> - -2005-10-23 18:43 mkrufky - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - * linux/drivers/media/video/saa7134/saa7134.h: - - Fix bug 5484: ASUS digimatrix card doesnt work with PAL tuner - - Created new card entry (80), to separate NTSC (7135) card - from PAL (7134) card versions. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-23 14:56 mkrufky - - * v4l/Make.config: - * v4l/Makefile: - - rename saa7113 to saa711x - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-23 14:30 mchehab - - * linux/drivers/media/video/saa7113.c: - - Renamed to saa711x since it should be modified to handle - other decoders from this family. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-23 13:12 mrechberger - - * linux/drivers/media/video/saa7113.c: - - added saa7114 support on i2c address 0x42 - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-10-23 06:18 mkrufky - - * linux/drivers/media/video/cx88/Kconfig: - * linux/drivers/media/video/saa7134/Kconfig: - - Create Kconfig files for cx88 and saa7134 directories. - These are new files, not yet in the kernel. When patching - upstream, we will have to remove cx88 and saa7134 stuff from - drivers/media/video/Kconfig and replace them with: - - source "drivers/media/video/cx88/Kconfig" - source "drivers/media/video/saa7134/Kconfig" - - - Previously, when loading cx88-dvb or saa7134-dvb, all supported - frontend modules get loaded as well, even if the hardware - doesn't need it. - - - Added new functionality to give users a choice of whether to - compile support for all dvb frontends, or to allow the user to - tweak the build, and only include support for frontend modules - needed by the hardware in the system. - - The option to build support for all frontends is selected by - default. When unselected, a list of frontends is displayed, all - selected by default. Users will be able to unselect the - frontend modules that they do not wish to build support for. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-23 00:57 mrechberger - - * linux/drivers/usb/media/em2820-video.c: - - added saa7114 initcode for MSI Vox USB 2.0 - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-10-22 23:57 mrechberger - - * linux/drivers/usb/media/em2820-cards.c: - * linux/drivers/usb/media/em2820-i2c.c: - * linux/drivers/usb/media/em2820.h: - - fixed settings for MSI Vox USB 2.0 (saa7114 is missing atm) - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-10-22 17:28 mchehab - - * linux/drivers/media/video/saa6752hs.c: - - moved to video/saa7134 to reflect the same dir used on kernel - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-20 23:57 mrechberger - - * linux/drivers/usb/media/em2820-cards.c: - - modified settings for MSI VOX USB 2.0 - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-10-20 20:11 nshmyrev - - * v4l/compat.h: - - - Fix kcalloc error with kernel < 2.6.9. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-20 20:00 mchehab - - * v4l/scripts/gentree.pl: - - This script does create a version-specific V4L tree on - another dir, removing compat references. It allows nested - #if or #ifdef. - - It needs more testing. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-20 19:58 mchehab - - * linux/drivers/media/video/video-buf-dvb.c: - * v4l/scripts/gentree.pl: - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-20 19:27 nshmyrev - - * v4l/compat.h: - - Fix build of em driver with 2.6.8 kernel. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-20 18:55 mkrufky - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - (saa7134_board_init1): - * linux/drivers/media/video/saa7134/saa7134.h: - - add card: PCTV Cardbus TV/Radio (ITO25 Rev:2B) - Composite input only for now. - Uses tda8275a tuner, not yet working. - - Signed-off-by: Paul T Zalac <pzalac@gmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-20 00:00 mkrufky - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - * linux/drivers/media/video/saa7134/saa7134.h: - - Analog support for Asus P7131 Dual - TDA8275A - - Digital support is under development - - Remote doesn't work yet - - Signed-off-by: Hermann Pitton <hermann.pitton@onlinehome.de> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-19 20:05 mchehab - - * v4l/scripts/gentree.pl: - - Fixed to work with CVS. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-19 14:39 mchehab - - * v4l/scripts/gentree.pl: - - Add new script to create a clean tree (without uneeded #if). - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-19 14:19 mchehab - - * linux/drivers/media/video/tuner-core.c: (tuner_attach): - - Rearranged print order to present a correct answer. - - Some cleanups at tuner_attach function. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-19 13:47 mchehab - - * linux/include/linux/videodev2.h: - * linux/include/linux/videodev.h: - - Fixed user mode compiling. - - Created a new define OBSOLETE_OWNER. It does indicate a - piece of API that should be removed for kernel 2.6.15. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-19 13:43 mchehab - - * linux/include/linux/videodev2.h: - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-19 00:44 mkrufky - - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - Tree-merge enabled once again. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-19 00:20 mkrufky - - * v4l/Makefile: - - Fix normal v4l build. Tree-merge temporarily disabled. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-18 23:50 nshmyrev - - * linux/drivers/media/video/tda8290.c: (tda8290_init): - * linux/include/media/tuner.h: - - Unify whitespaces. - - Fix build warning. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-19 01:00 hhackmann - * linux/drivers/media/video/tda8290.c: - * linux/drivers/media/video/tuner-core.c: - - - corrected probing code for tda8290 - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> - -2005-10-18 23:42 mkrufky - - * v4l/Makefile: - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - Previous commit broke tree-merge. Here is the correct fix. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-18 21:59 mkrufky - - * v4l/Makefile: - * v4l/scripts/merge-trees.sh: - - Partially revert to old tree-merge method to resolve the bug: - dvb_dmx_init failed (errno = -12) - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-18 21:48 nshmyrev - - * linux/drivers/media/video/cx88/cx88-video.c: (radio_do_ioctl): - * linux/drivers/media/video/saa7134/saa7134-video.c: - (video_do_ioctl), (radio_do_ioctl): - - - Set tuner type in VIDIOC_G_TUNER. - - Signed-off-by: Elad Lahav <elad_lahav@users.sourceforge.net> - -2005-10-18 17:16 mchehab - - * linux/drivers/usb/media/em2820-cards.c: (em2820_card_setup): - - - Fixed log for tveeprom on em28xx cards. - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-18 16:54 mchehab - - * linux/drivers/media/video/tda8290.c: (tda8290_init): - * linux/drivers/media/video/tuner-core.c: (tuner_attach): - - - Added autodetection code to tda8290, to avoid conflicts with - tda9887. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-18 14:26 mchehab - - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (snd_card_saa7134_hw_params), (snd_card_saa7134_hw_free), - (snd_card_saa7134_pcm): - - - Cleanup some unnecessary ALSA memory (de/)allocations - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-18 14:14 mchehab - - * linux/drivers/media/video/ir-kbd-i2c.c: (ir_attach): - * linux/drivers/media/video/saa7134/saa7134-i2c.c: - (attach_inform): - * linux/drivers/media/video/saa7134/saa7134-input.c: - (get_key_purpletv), (get_key_pinnacle), (saa7134_set_i2c_ir): - * linux/drivers/media/video/saa7134/saa7134.h: - * linux/drivers/usb/media/em2820-input.c: (em2820_set_ir): - - - SAA713x keymaps and key builders were moved from ir-kbd-i2c.c - to saa7134-input.c - - saa7134-i2c's attach now detects I2C IR and calls saa7134 specific - code. - - Small bugfix at ir-kbd-i2c. - - disable_ir now unregisters i2c device. - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-18 14:01 mchehab - - * linux/drivers/media/video/cs53132a.c: - * v4l/Makefile: - - Added driver for Cirrus Logic Low Voltage Stereo A/D Converter. - This is used by Adaptec AVC-2010 and AVC-2410 boards. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-18 13:51 mchehab - - * linux/include/linux/videodev.h: - * linux/include/linux/videodev2.h: - - Commented obsoleted stuff. - - * linux/drivers/usb/media/em2820-video.c: (em2820_init_dev): - - Removed reference to owner on video_device - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-18 00:45 mrechberger - - * linux/drivers/usb/media/em2820-video.c: (em2820_v4l2_close): - - cleanup dev assignment - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-10-18 00:37 mrechberger - - * linux/drivers/usb/media/em2820-video.c: - - replaced obsolete video_get_drvdata and video_set_drvdata - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-10-17 22:01 nshmyrev - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/ir-kbd-i2c.c: (get_key_pinnacle), - (ir_attach), (ir_probe): - * linux/drivers/media/video/saa7134/saa7134-cards.c: - * linux/drivers/media/video/saa7134/saa7134.h: - - Supports the Pinnacle PCTV 110i board, video inputs, and remote. - - Tuning only works with the new tda8290 module (it's a tda8275a) - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-10-17 21:59 nshmyrev - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/ir-kbd-i2c.c: (get_key_pinnacle), - (ir_attach), (ir_probe): - * linux/drivers/media/video/saa7134/saa7134-cards.c: - * linux/drivers/media/video/saa7134/saa7134.h: - - Supports the Pinnacle PCTV 110i board, video inputs, and remote. - - Tuning only works with the new tda8290 module (it's a tda8275a) - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-10-17 21:52 nshmyrev - - * linux/drivers/media/video/tda8290.c: (tda827x_tune), - (tda827xa_tune), (tda8290_tune), (tda8290_init_tuner), - (tda8290_init): - - Strip trailing whitespaces. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-17 21:44 nshmyrev - - * linux/drivers/media/video/wm8775.c: (wm8775_command): - - - VIDIOC_LOG_STATUS is added to videodev2.h this can be enabled - again in wm8775.c. Also use the v4l2 VIDIOC_S_FREQUENCY instead of - VIDIOCSFREQ. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-10-17 21:12 mchehab - * linux/include/linux/videodev.h: - * linux/include/linux/videodev2.h: - - Common stuff moved to videodev2.h. - - HAVE_V4L1 is defined on videodev.h - - HAVE_V4L2 moved to videodev2.h - - * linux/include/media/video-buf.h: - - includes videodev2.h instead of videodev.h - - * linux/drivers/media/video/cx88/cx88-video.c: (video_do_ioctl), - (radio_do_ioctl): - * linux/drivers/media/video/saa7134/saa7134-video.c: - (video_do_ioctl): - - if HAVE_V4L1, then V4L1 specific code is included. - - * linux/drivers/media/video/saa7134/saa7134.h: - - includes videodev2.h instead of videodev.h - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-17 23:00 hhackmann - - * linux/drivers/media/video/tda8290.c: - * linux/drivers/media/video/tuner-core.c: - * linux/include/media/tuner.h: - - add support for tda8275a - - support all possible I2C addresses - - automatic version and address detection - - let i2c bridge stabilize befor use - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> - -2005-10-16 20:16 mkrufky - - * v4l/scripts/merge-trees.sh: - - make merge-trees less verbose. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-16 20:05 mkrufky - - * linux/drivers/media/dvb/.cvsignore: - - Really make cvs quiet. .cvsignore in drivers/media wasn't enough. - - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - Fix offsets. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-16 19:01 mchehab - - * linux/drivers/media/video/msp3400.c: (msp_command): - - after msp34xxg_reset, msp_wake_thread should be called to - activate autodetection again. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-16 17:42 mrechberger - - * linux/drivers/usb/media/em2820-core.c: (em2820_init_isoc), - (em2820_uninit_isoc): - - replaced kmalloc/kfree with usb_buffer_alloc/usb_buffer_free to get - around the kmalloc restrictions - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-10-16 12:14 mchehab - - * v4l/scripts/strip-trailing-whitespaces.sh: - - Improved to change initial spaces for tab - - * linux/Documentation/video4linux/README.cx88: - * linux/Documentation/video4linux/bttv/Cards: - * linux/Documentation/video4linux/bttv/README: - * linux/Documentation/video4linux/bttv/Sound-FAQ: - * linux/Documentation/video4linux/lifeview.txt: - * linux/drivers/media/common/ir-common.c: (ir_input_key_event), - (ir_input_init): - * linux/drivers/media/video/bt832.c: (bt832_hexdump), - (bt832_init), (bt832_attach), (bt832_command): - * linux/drivers/media/video/bt832.h: - * linux/drivers/media/video/bttv-cards.c: (identify_by_eeprom), - (flyvideo_gpio), (miro_pinnacle_gpio), (gvc1100_muxsel), - (bttv_init_card1), (bttv_init_card2), (modtec_eeprom), - (pvr_altera_load), (pvr_boot), (osprey_eeprom), (avermedia_eeprom), - (bttv_tda9880_setnorm), (boot_msp34xx), (init_PXC200), - (lt9415_audio), (windvr_audio), (xguard_muxsel), (PXC200_muxsel): - * linux/drivers/media/video/bttv-driver.c: (set_pll_freq), - (set_pll), (bt848A_set_timing), (bt848_hue), (bt848_contrast), - (bt848_sat), (video_mux), (init_bt848), (bttv_reinit_bt848), - (bttv_prepare_buffer), (bttv_common_ioctls), (bttv_s_fmt), - (bttv_do_ioctl), (radio_open), (radio_do_ioctl), (bttv_irq), - (bttv_register_video), (pci_set_command): - * linux/drivers/media/video/bttv-gpio.c: - * linux/drivers/media/video/bttv-i2c.c: (bttv_i2c_readbytes), - (attach_inform), (bttv_I2CRead), (bttv_I2CWrite), (init_bttv_i2c): - * linux/drivers/media/video/bttv-if.c: - * linux/drivers/media/video/bttv-risc.c: (bttv_risc_packed), - (bttv_risc_planar), (bttv_calc_geo), (bttv_apply_geo), - (bttv_set_dma), (bttv_risc_init_main): - * linux/drivers/media/video/bttv.h: - * linux/drivers/media/video/bttvp.h: - * linux/drivers/media/video/cx88/cx88-alsa.c: (snd_cx88_create): - * linux/drivers/media/video/cx88/cx88-blackbird.c: - (memory_read), (blackbird_load_firmware), - (blackbird_set_default_params), (blackbird_set_params), - (blackbird_remove): - * linux/drivers/media/video/cx88/cx88-cards.c: - * linux/drivers/media/video/cx88/cx88-core.c: (cx88_risc_field), - (cx88_core_get): - * linux/drivers/media/video/cx88/cx88-dvb.c: - (dntv_live_dvbt_demod_init), (dvb_remove): - * linux/drivers/media/video/cx88/cx88-i2c.c: (attach_inform), - (cx88_i2c_init): - * linux/drivers/media/video/cx88/cx88-input.c: (cx88_ir_irq): - * linux/drivers/media/video/cx88/cx88-mpeg.c: (cx8802_mpeg_irq), - (cx8802_init_common), (cx8802_suspend_common): - * linux/drivers/media/video/cx88/cx88-reg.h: - * linux/drivers/media/video/cx88/cx88-video.c: - (restart_video_queue), (ov_risc_frame), (verify_window), - (video_open), (set_control), (cx88_do_ioctl), (radio_do_ioctl), - (cx8800_initdev), (cx8800_finidev): - * linux/drivers/media/video/cx88/cx88.h: - * linux/drivers/media/video/ir-kbd-gpio.c: (ir_probe): - * linux/drivers/media/video/ir-kbd-i2c.c: (get_key_pixelview), - (get_key_pv951), (get_key_purpletv), (ir_attach), (ir_detach): - * linux/drivers/media/video/msp3400.c: (msp3400c_reset), - (msp3400c_read), (msp3400c_write), (watch_stereo), (msp_attach), - (msp_command): - * linux/drivers/media/video/mt20xx.c: (mt2032_compute_freq), - (mt2032_check_lo_lock), (mt2032_optimize_vco), - (mt2032_set_if_freq), (mt2032_set_tv_freq), - (mt2032_set_radio_freq), (mt2032_init), (mt2050_set_if_freq), - (mt2050_set_tv_freq), (microtune_init): - * linux/drivers/media/video/saa6752hs.c: - (saa6752hs_chip_command), (saa6752hs_set_bitrate), - (saa6752hs_init), (saa6752hs_attach), (saa6752hs_command): - * linux/drivers/media/video/saa7113.c: - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - (saa7134_dma_stop), (saa7134_dma_start), (saa7134_irq_alsa_done), - (dsp_buffer_conf), (dsp_buffer_init), - (snd_card_saa7134_capture_prepare), - (snd_card_saa7134_capture_pointer), (dsp_buffer_free), - (snd_card_saa7134_capture_close), (snd_card_saa7134_capture_open), - (snd_saa7134_volume_put), (snd_saa7134_capsrc_put), - (snd_saa7134_dev_free), (alsa_card_saa7134_create), - (alsa_card_saa7134_exit): - * linux/drivers/media/video/saa7134/saa7134-cards.c: - (saa7134_board_init2): - * linux/drivers/media/video/saa7134/saa7134-core.c: - (pending_call), (saa7134_pgtable_alloc), (saa7134_set_dmabits), - (saa7134_hwinit1), (saa7134_hwinit2), (saa7134_initdev), - (saa7134_finidev): - * linux/drivers/media/video/saa7134/saa7134-dvb.c: - (philips_tda827x_pll_set), (philips_tda827x_pll_sleep): - * linux/drivers/media/video/saa7134/saa7134-empress.c: - (ts_reset_encoder), (ts_init_encoder), (ts_do_ioctl): - * linux/drivers/media/video/saa7134/saa7134-i2c.c: - (saa7134_i2c_xfer), (attach_inform): - * linux/drivers/media/video/saa7134/saa7134-input.c: - (build_key), (saa7134_input_irq), (saa7134_input_init1): - * linux/drivers/media/video/saa7134/saa7134-oss.c: - (dsp_buffer_conf), (dsp_ioctl), (mixer_recsrc_7133), (mixer_ioctl), - (saa7134_oss_init1): - * linux/drivers/media/video/saa7134/saa7134-reg.h: - * linux/drivers/media/video/saa7134/saa7134-ts.c: - (buffer_prepare): - * linux/drivers/media/video/saa7134/saa7134-tvaudio.c: - (mute_input_7134), (mute_input_7133): - * linux/drivers/media/video/saa7134/saa7134-video.c: (set_size), - (verify_preview), (video_poll), (video_do_ioctl), (radio_do_ioctl), - (saa7134_video_init1): - * linux/drivers/media/video/saa7134/saa7134.h: - * linux/drivers/media/video/tda7432.c: (tda7432_attach), - (tda7432_command): - * linux/drivers/media/video/tda8290.c: - * linux/drivers/media/video/tda9875.c: (i2c_read_register), - (do_tda9875_init), (tda9875_attach), (tda9875_command): - * linux/drivers/media/video/tda9887.c: (tda9887_set_pinnacle), - (tda9887_status), (tda9887_configure), (tda9887_attach), - (tda9887_command): - * linux/drivers/media/video/tea5767.c: - * linux/drivers/media/video/tuner-core.c: (set_mode), - (tuner_command): - * linux/drivers/media/video/tuner-simple.c: (tuner_stereo), - (tuner_islocked), (tuner_afcstatus), (tuner_mode), - (default_set_tv_freq), (default_set_radio_freq): - * linux/drivers/media/video/tvaudio.c: (chip_attach): - * linux/drivers/media/video/tveeprom.c: (hasRadioTuner), - (tveeprom_hauppauge_analog), (tveeprom_detect_client): - * linux/drivers/media/video/tvmixer.c: (tvmixer_ioctl), - (tvmixer_open): - * linux/drivers/media/video/v4l1-compat.c: - (v4l_compat_translate_ioctl): - * linux/drivers/media/video/video-buf.c: - (videobuf_dma_init_user), (videobuf_read_zerocopy), - (videobuf_read_one), (videobuf_vm_nopage): - * linux/drivers/media/video/wm8775.c: - * linux/drivers/usb/media/em2820-cards.c: - * linux/drivers/usb/media/em2820-core.c: - * linux/drivers/usb/media/em2820-i2c.c: - * linux/drivers/usb/media/em2820-input.c: - * linux/drivers/usb/media/em2820-video.c: - * linux/drivers/usb/media/em2820.h: - * linux/include/linux/videodev.h: - * linux/include/linux/videodev2.h: - * linux/include/media/audiochip.h: - * linux/include/media/i2c-compat.h: - * linux/include/media/saa6752hs.h: - * linux/include/media/tuner.h: - * linux/include/media/video-buf.h: - * linux/sound/pci/bt87x.c: (snd_bt87x_create_risc): - - Whitespace cleanups - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-16 06:11 nshmyrev - - * linux/drivers/media/video/bttv-cards.c: - Don't request GPINT on Avermedia TV Capture 98. - - Signed-off-by: Ray Cole <ray_cole@earthlink.net>. - -2005-10-16 03:19 mchehab - - * linux/drivers/media/video/bttv-driver.c: (bttv_common_ioctls), - (bttv_do_ioctl): - * linux/drivers/media/video/tda9887.c: (tda9887_configure), - (tda9887_command): - * linux/include/linux/videodev2.h: - - - This patch adds the VIDIOC_LOG_STATUS to videodev2.h and adds - LOG_STATUS support to tda9887.c and bttv-driver.c. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-15 17:01 nshmyrev - - * linux/drivers/media/video/bttv-driver.c: (bttv_irq): - - More intellect on clearing in bits on irq lock. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-15 14:14 nshmyrev - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - (saa7134_board_init1): - * linux/drivers/media/video/saa7134/saa7134.h: - - Add SKNet Monster TV Mobile card. - - Signed-off-by: Pieter Palmers <pieterp@joow.be> - -2005-10-15 13:11 nshmyrev - - * linux/drivers/media/video/cx88/cx88-cards.c: - * linux/drivers/media/video/tda9887.c: (tda9887_set_config): - * linux/include/media/tuner.h: - - New config option for tda9887 to specifically set intercarrier - depending on current standard and card. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-15 12:08 nshmyrev - - * linux/Documentation/video4linux/CARDLIST.bttv: - * linux/drivers/media/video/bttv-cards.c: - * linux/drivers/media/video/bttv.h: - - Added Asound Skyeye bttv card. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-15 09:19 nshmyrev - - * linux/drivers/usb/media/em2820-input.c: (em2820_set_ir): - - Remotes for the Cinergy 200 USB and Cinergy 250 USB are the same. - - Signed-off-by: Sascha Sommer <saschasommer@freenet.de> - -2005-10-15 08:25 nshmyrev - - * linux/drivers/media/.cvsignore: - * linux/include/linux/.cvsignore: - - Make CVS quiet. - - Signed-off-by: Adam Forsyth <agforsyth@gmail.com>. - -2005-10-14 23:26 mrechberger - - * linux/drivers/usb/media/em2820-input.c: - * linux/drivers/drivers/media/ir-kbd-i2c.c: - - CodingStyle fixes - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-10-14 22:03 mrechberger - - * linux/drivers/usb/media/em2820-input.c: - - Added support for Terratec Cinergy 250 USB - - * linux/drivers/media/ir-kbd-i2c.c: (ir_probe) - - changed signed char to unsigned char - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-10-14 18:45 mchehab - - * linux/drivers/media/video/saa7113.c: - * v4l/Makefile: - - Added support for saa7113. - - Signed-off-by: Dwaine Garden <DwaineGarden@rogers.com> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-14 17:26 mchehab - - * linux/drivers/media/video/msp3400.c: (msp_command): - - This fixes dual language detection on the msp3400. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-14 16:41 mchehab - - * linux/drivers/usb/media/em2820-cards.c: - * linux/drivers/usb/media/em2820-core.c: (em2820_scaler_set): - * linux/drivers/usb/media/em2820-video.c: - (em2820_video_do_ioctl): - * linux/drivers/usb/media/em2820.h: - - Chip_id removed since it isn't required anymore. - - Scaler code for the em2820 does not seem to work for the em2800 - chipset. Attached patch will disable all resolutions for the - em2800 that do not produce correct output. - Not sure if NTSC is working. - - Signed-off-by: Sascha Sommer <saschasommer@freenet.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-14 16:04 mchehab - - * linux/drivers/media/video/ir-kbd-i2c.c: (get_key_haup), - (get_key_pixelview), (get_key_pv951), (get_key_knc1), - (get_key_purpletv), (ir_key_poll), (ir_timer), (ir_work), - (ir_attach), (ir_detach), (ir_probe): - - - moved Pinnacle IR table (ir_codes_em2820) to em2820-input.c - - IR struct renamed and moved to a header file. - - * v4l/Makefile: - * linux/drivers/usb/media/em2820-input.c: - - New file to handle em2820-specific IR. - - It uses ir-kbd-i2c to handle I2C IR. - - Experimental em2820 code removed and probe fixed. - - Detection code changed to be like i2c_scan, since the old one - doesn't work with em2820 cards. - - * linux/drivers/usb/media/em2820-cards.c: (em2820_card_setup): - - Removed some testing code. - - * linux/drivers/usb/media/em2820-i2c.c: (em2820_i2c_xfer), - (attach_inform): - - Some cleanups at debug messages. - - attach now detects I2C IR and calls em2820-specific IR code - - * linux/drivers/usb/media/em2820-video.c: (em2820_usb_probe): - - Board detection message improved to show interface and class. - - Now it doesn't touch audio interfaces. - - * linux/drivers/usb/media/em2820.h: - - Comments changed to /* */ instead of // - - Included IR headers - - * v4l/compat.h: - * linux/include/media/ir-common.h: - - IR compat code moved to compat.h - - * linux/include/media/ir-kbd-i2c.h: - - New header with struct IR_i2c there, to allow it to be - used by board-specific input handlers. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-14 15:48 mchehab - - * linux/drivers/usb/media/em2820-input.c - * v4l/Makefile: - - * linux/drivers/usb/media/em2820-cards.c: (em2820_card_setup): - * linux/drivers/usb/media/em2820-i2c.c: (em2820_i2c_xfer), - (attach_inform): - * linux/drivers/usb/media/em2820-video.c: (em2820_usb_probe): - * linux/drivers/usb/media/em2820.h: - * linux/include/media/ir-common.h: - * v4l/compat.h: - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-14 15:46 mchehab - - * linux/drivers/media/video/ir-kbd-i2c.c: (get_key_haup), - (get_key_pixelview), (get_key_pv951), (get_key_knc1), - (get_key_purpletv), (ir_key_poll), (ir_timer), (ir_work), - (ir_attach), (ir_detach), (ir_probe): - * linux/drivers/usb/media/em2820-cards.c: (em2820_card_setup): - * linux/drivers/usb/media/em2820-i2c.c: (em2820_i2c_xfer), - (attach_inform): - * linux/drivers/usb/media/em2820-video.c: (em2820_usb_probe): - * linux/drivers/usb/media/em2820.h: - * linux/include/media/ir-common.h: - * v4l/Makefile: - * v4l/compat.h: - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-13 01:09 mrechberger - - * linux/drivers/media/video/ir-kbd-i2c.c: - - fixed bad em2820 remote layout values, set KNC One and - Purple TV layouts back to default - - * linux/drivers/usb/media/em2820-i2c.c: - - added pinnacle ir remote i2c address to the i2c scanner - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-10-12 20:10 nshmyrev - - * linux/drivers/usb/media/em2820-core.c: - - Fixed typo in module param description - - Signed-off-by: Paul Vriens <Paul.Vriens@xs4all.nl> - -2005-10-12 07:02 mrechberger - * linux/drivers/media/video/ir-kbd-i2c.c: - - fixed probe function, em2820 remote layout, - disabled em2820 pinnacle ir support - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-10-11 23:56 mkrufky - - * v4l/scripts/strip-trailing-whitespaces.sh: - - Updated script to function in new tree layout. - Must be called from top-level. - - * Makefile: - - Automatically strip trailing whitespaces before - creating Changelog entry. - - * linux/Documentation/video4linux/README.cx88: - * linux/Documentation/video4linux/README.saa7134: - * linux/Documentation/video4linux/bttv/Sound-FAQ: - * linux/Documentation/video4linux/bttv/Tuners: - * linux/Documentation/video4linux/cx88/hauppauge-wintv-cx88-ir.txt: - * linux/Documentation/video4linux/lifeview.txt: - * linux/drivers/media/video/ir-kbd-i2c.c: - * linux/drivers/media/video/wm8775.c: (wm8775_write): - - Strip trailing whitespaces (for the last time!) - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-12 03:11 mkrufky - - * linux/Documentation/video4linux/CARDLIST.saa7134: - * linux/drivers/media/video/saa7134/saa7134-cards.c: - * linux/drivers/media/video/saa7134/saa7134.h: - - Added card 75 AVerMedia AVerTVHD MCE A180 - s-video and composite inputs only. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-12 00:52 mkrufky - - * linux/drivers/media/video/saa7134/saa7134.h: - - fix build warnings: - In function `saa7134_board_init1': - warning: implicit declaration of function `msleep' - - From: Adam Forsyth <agforsyth@gmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-11 22:03 mkrufky - - * v4l/Makefile: - - fix CPPFLAGS to find video-buf-dvb.h - - From: Adam Forsyth <agforsyth@gmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-11 21:07 mkrufky - - * linux/drivers/media/video/cx88/Makefile: - * linux/drivers/media/video/saa7134/Makefile: - - Be sure to enable video-buf-dvb in kernel build. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-11 21:00 mkrufky - - * linux/drivers/media/video/cx88/Makefile: - * linux/drivers/media/video/saa7134/Makefile: - - import cx88 and saa7134 Makefile(s) from 2.6.14-rc4 - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-11 20:28 mchehab - - * linux/drivers/media/video/wm8775.c: - * v4l/Makefile: - - - The wm8775 is a Wolfson Microelectronics 24-bit, 96kHz ADC with 4 - Channel I/P Multiplexer. It is used in Hauppauge PVR150/500 - PVR boards. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-11 20:09 mkrufky - - * linux/drivers/media/video/cx88/cx88.h: - * v4l/Make.config: - * v4l/Makefile: - - Allow to disable build of video-buf-dvb in Make.config - using compile flag CONFIG_VIDEO_BUF_DVB - - replaced check using this method: - -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)) - +#ifdef HAVE_VIDEO_BUF_DVB - - * linux/drivers/media/video/saa7134/saa7134.h: - - #include <linux/notifier.h> in saa7134.h to fix build - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-11 20:03 nshmyrev - - * v4l/compat.h: - - Fix compilation with 2.6.8. - - Signed-off-by: Nickolay V. Shmyrev <<nshmyrev@yandex.ru>> - -2005-10-11 17:59 mkrufky - - * linux/drivers/media/video/bttv-cards.c: (bttv_idcard): - - Don't bother Gerd with bttv-cards patches. - Instead, send to video4linux mailing list. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-11 16:48 mchehab - - * linux/Documentation/video4linux/CARDLIST.em2820: - * linux/drivers/usb/media/em2820-cards.c: - * linux/drivers/usb/media/em2820-core.c: - (em2820_isoc_video_copy), (em2820_set_alternate): - * linux/drivers/usb/media/em2820-i2c.c: (em2800_i2c_send_max4), - (em2800_i2c_send_bytes), (em2800_i2c_check_for_device), - (em2800_i2c_recv_bytes), (em2820_i2c_send_bytes), - (em2820_i2c_recv_bytes), (em2820_i2c_check_for_device), - (em2820_i2c_xfer), (em2820_i2c_eeprom), (do_i2c_scan): - * linux/drivers/usb/media/em2820-video.c: (em2820_do_ioctl), - (em2820_init_dev), (em2820_usb_probe): - * linux/drivers/usb/media/em2820.h: - * v4l/scripts/cardlist: - * v4l/scripts/em2820.pl: - - - Included support for em2800. - - Included card insmod parameter. - - Now it will not try to register audio anymore. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-11 05:17 mkrufky - - * linux/Documentation/video4linux/CARDLIST.cx88: - * linux/drivers/media/video/cx88/cx88-cards.c: - * linux/drivers/media/video/cx88/cx88-dvb.c: (dvb_register): - * linux/drivers/media/video/cx88/cx88.h: - - Add DVB card WinFast DTV1000-T - - From: David Shirley <David.Shirley@team.telstra.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-11 04:23 mchehab - - * v4l/Makefile: - * v4l/scripts/cardlist: - - Fixed dir for em2820. Now at drivers/usb/media - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-11 04:01 mchehab - - * linux/include/media/id.h: - - - Include newer I2C ID. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-11 04:09 mrechberger - - * linux/drivers/usb/media/em2820-i2c.c: (attach_inform): - - Fixed usb index/registry value for the videotuner - Changed I2C_HW_B_EM2820 to 0x99, this should finally go into - /include/linux/i2c-id.h with the appropriate value - * linux/drivers/usb/media/em2820-video.c: (em2820_config_i2c): - - i2c tuner setting TDA9887_SET_CONFIG moved into em2820-i2c.h - * linux/drivers/media/video/ir-kbd-i2c.c: (ir_attach), - (ir_probe): - - added support for Terratec Cinergy 250 USB TV IR Remote - * v4l/compat.h: - - hardcoded #define I2C_HW_B_EM2820 0x99 which should also go - into /include/linux/i2c-id.h - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - -2005-10-10 22:04 mchehab - - * linux/drivers/media/video/cx88/cx88-video.c: (cx8800_initdev): - * linux/drivers/media/video/msp3400.c: (msp_attach): - - - Some fixups for 2.4 kernel. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-10 21:53 mchehab - - * linux/drivers/media/video/msp3400.c: - (msp3400c_write_dfp_with_default), (msp3400c_thread), - (msp3410d_thread), (msp34xxg_reset), (msp34xxg_thread), - (msp_attach), (msp_detach), (msp_command): - - More improvements at msp3400.c from ivtv code. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-10 16:21 mchehab - - * linux/drivers/media/video/msp3400.c: (msp3400c_reset), - (msp3400c_read), (msp3400c_write), (msp3400c_set_scart), - (msp3400c_setvolume), (msp3400c_setbass), (msp3400c_settreble), - (msp3400c_setmode), (best_video_sound), (msp3400c_setstereo), - (msp3400c_print_mode), (msp3400c_restore_dfp), - (msp3400c_write_dfp_with_default), (autodetect_stereo), - (watch_stereo), (msp3400c_thread), (msp34xx_modus), - (msp3410d_thread), (msp34xxg_thread), (msp_attach), - (msp_any_set_audmode), (msp_command): - - Some improvements at msp3400.c from ivtv code. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-10 14:19 mchehab - - * linux/drivers/media/video/saa6588.c: (saa6588_attach): - * linux/drivers/media/video/saa6752hs.c: (saa6752hs_attach): - * linux/drivers/media/video/tveeprom.c: - (tveeprom_detect_client): - * linux/drivers/media/video/tvp5150.c: (tvp5150_detect_client): - - Some compilation fixes for 2.4 kernel. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-10 09:30 mkrufky - - * v4l/Makefile: - - removed unneeded line. - - * v4l/scripts/makelinks.sh: - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - fixed offsets. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-10 09:05 mkrufky - - * v4l/Makefile: - * v4l/scripts/makelinks.sh: - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - Alternative build method: 'make kernel-links' - based on 'makelinks' script in dvb-kernel cvs. - - Symlink cvs code into kernel source in order to build cvs code - inside kernel build. - - Currently requires merged-trees, because of some missing files - in v4l-kernel cvs, present in dvb-kernel cvs, such as Makefile - - 'make kernel-links' will automatically call 'make merge-trees' - - Currently requires a patch to linux/include/linux/videodev.h, - which adds #include "compat.h" Patch is applied during - 'make kernel-links' and is removed during 'make clean' - - videodev.h patch and merge-trees dependency can be removed in - the future. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-09 23:08 mkrufky - - * linux/drivers/media/video/tda9887.c: (dump_read_message), - (dump_write_message), (tda9887_set_tvnorm), (tda9887_fixup_std), - (tda9887_status), (tda9887_configure), (tda9887_attach), - (tda9887_suspend), (tda9887_resume): - - Add the adapter/address prefix to the tda9887 kernel messages. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-09 22:50 mchehab - - * v4l/Makefile: - - snapshot feature updated. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-09 22:31 mkrufky - - * v4l/Make.config: - - removed commented old code. - - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - fix Make.config offsets. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-09 21:18 mkrufky - - * v4l/Makefile: - - don't symlink linux/include to v4l/ in merged-tree environment. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-09 21:04 mkrufky - - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - fix fuzz & offsets. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-09 20:55 mkrufky - - * v4l/Makefile: - - clean up 'make links' build output. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-09 20:21 mkrufky - - * v4l/Makefile: - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - Step two, move merged dvb/v4l cvs tree functionality into Makefile. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-09 20:12 mchehab - - * v4l/Make.config: - - - Fixed dvb compiling. - - * v4l/Makefile: - - Included some options to make easier to commit. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-09 19:37 mchehab - - * v4l/Makefile: - - Fixed support for extraversion. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-09 18:02 mchehab - - * linux/drivers/media/video/bttv-cards.c: - * linux/drivers/media/video/bttv-driver.c: - * linux/drivers/media/video/bttv-i2c.c: - * linux/drivers/media/video/bttvp.h: - * linux/drivers/media/video/cx88/cx88-blackbird.c: - (blackbird_load_firmware): - * linux/drivers/media/video/cx88/cx88-core.c: - * linux/drivers/media/video/cx88/cx88-i2c.c: (cx88_i2c_init): - * linux/drivers/media/video/cx88/cx88-input.c: (cx88_ir_init): - * linux/drivers/media/video/cx88/cx88-tvaudio.c: - * linux/drivers/media/video/cx88/cx88-video.c: - * linux/drivers/media/video/cx88/cx88.h: - * linux/drivers/media/video/ir-kbd-gpio.c: - * linux/drivers/media/video/ir-kbd-i2c.c: - * linux/drivers/media/video/msp3400.c: (msp34xx_sleep), - (msp_probe), (msp_suspend): - * linux/drivers/media/video/saa6588.c: (saa6588_probe): - * linux/drivers/media/video/saa6752hs.c: (saa6752hs_probe): - * linux/drivers/media/video/saa7134/saa7134-alsa.c: - * linux/drivers/media/video/saa7134/saa7134-core.c: - (saa7134_fini): - * linux/drivers/media/video/saa7134/saa7134-empress.c: - * linux/drivers/media/video/saa7134/saa7134-i2c.c: - * linux/drivers/media/video/saa7134/saa7134.h: - * linux/drivers/media/video/tda9887.c: (tda9887_probe), - (tda9887_suspend): - * linux/drivers/media/video/tvaudio.c: (chip_thread), - (chip_probe): - * linux/drivers/media/video/tveeprom.c: - * linux/drivers/media/video/tvmixer.c: - * linux/drivers/media/video/tvp5150.c: - * linux/drivers/media/video/video-buf-dvb.c: - * linux/drivers/media/video/video-buf.c: - * linux/include/linux/video_decoder.h: - * linux/include/media/ir-common.h: - * v4l/Make.config: - * v4l/Makefile: - * v4l/compat.h: - - Lots of small changes to allow compiling with kernel 2.4. - Compilation result not tested yet. - - - After this patch, .version should be removed, since its - syntax has changed. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-09 08:46 mkrufky - - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - symlink entire dvb-kernel tree into v4l-kernel/linux - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-09 03:52 mchehab - - * Makefile: - - make changelog now rebuilds cardlist - - * v4l/scripts/buildpatch: - - Updated to work against linux - - * v4l/scripts/cardlist: - - fixed to work even without symlinks - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-09 03:31 mchehab - - * Makefile: - - created make changelog to make easier to generate patches. - - * linux/drivers/media/video/cx88/cx88-core.c: - * linux/drivers/media/video/cx88/cx88.h: - * linux/kernel/drivers/usb/media/em2820-core.c: - * linux/kernel/drivers/usb/media/em2820-i2c.c: - * linux/kernel/drivers/usb/media/em2820-video.c: - * linux/kernel/drivers/usb/media/em2820.h: - - removed unneccessary includes. - - * v4l/scripts/prepare-ChangeLog.pl: - - Modified to avoid detecting ChangeLog as a change. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-08 03:24 mkrufky - - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - now make clean calls make unmerge-trees in merged build environment. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-08 03:04 mkrufky - - * linux/drivers/media/video/bttv.h: - - "compat.h" must be #include'd before <linux/videodev.h> - - * linux/include/linux/videodev.h: - - removed #include "compat.h" - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-09 02:06 mkrufky - - * v4l/Make.config: - * v4l/Makefile: - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - Step one, move merged dvb/v4l cvs tree functionality into Makefile. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-08 23:10 mkrufky - - * v4l/Makefile: - - renamed tree-merge functions. new names: - make merge-trees - make unmerge-trees - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-08 22:58 mkrufky - - * linux/include/linux/videodev.h: - - #include "compat.h" - - * v4l/Makefile: - - add two new make commands for tree-merge: - make merge - make unmerge - - this allows tree-merge commands to be called from - both top-level v4l-kernel and v4l-kernel/v4l - - * v4l/scripts/merge-trees.sh: - * v4l/scripts/unmerge-trees.sh: - - fix offsets - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-08 21:54 mkrufky - - * v4l/Makefile: - - Made symlinks a separate process in Makefile. - - To make symlinks without building, run "make links" - - "make" alone, will symlink and build, as before. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-08 21:25 mkrufky - - * Makefile: - - Added top-level Makefile that calls v4l/Makefile - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-08 20:03 mchehab - - From: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - - * linux/drivers/media/video/tveeprom.c: - - Fixed include when compiling at kernel tree - - * linux/include/linux/videodev.h: - - removed compat.h from wrong place - - * linux/drivers/media/video/tvp5150.c: - * linux/kernel/drivers/usb/media/em2820-cards.c: - * linux/kernel/drivers/usb/media/em2820-core.c: - * linux/kernel/drivers/usb/media/em2820-i2c.c: - * linux/kernel/drivers/usb/media/em2820-video.c: - - included compat.h at the right place - - * v4l/Makefile: - - now creates symlinks to allow compiling V4L stuff at - v4l dir. - - * v4l/scripts/prepare-ChangeLog.pl: - - modified to include other directories. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-08 17:02 mkrufky - - * v4l1-compat.c: (v4l_compat_translate_ioctl): - - change VIDIOCSFREQ and VIDIOCGFREQ from int to unsigned long - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-08 09:19 nshmyrev - - * saa7134-alsa.c: (snd_saa7134_capsrc_put), - (alsa_card_saa7134_create): - * saa7134-core.c: (saa7134_initdev): - * saa7134.h: - - - - Fixed a bug that caused some saa7133 code to run on saa7134 boards - - dsp_nr (to force a given audio card number) from OSS now works for - ALSA as well. - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-10-07 19:18 mkrufky - - * tveeprom.c: - - fix compile with gcc-2.95 - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-07 05:35 nshmyrev - - * saa7134-alsa.c: (saa7134_dma_stop), - (snd_card_saa7134_capture_prepare), - (snd_card_saa7134_capture_pointer), - (snd_card_saa7134_capture_close), (snd_card_saa7134_capture_open), - (snd_card_saa7134_pcm), (snd_saa7134_capsrc_info), - (snd_saa7134_capsrc_put), (snd_card_saa7134_new_mixer), - (alsa_card_saa7134_create): - - Fixed kernel oops when hotswapping PC Cards - - Fixed capture source switch issue in mixer - - Removed some unnecessary wrappers - - Minor code cleanups - - Added a few comments to document the purpose of the major functions. - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-10-07 03:10 mkrufky - - * em2820-i2c.c: - - Kill i2c_algorithm.name - - Kill i2c_algorithm.id - - Fix build for 2.6.14 - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-06 23:54 mkrufky - - * saa7134-alsa.c: (snd_card_saa7134_pcm_prepare), - (snd_card_saa7134_capture_close): - * saa7134-core.c: (saa7134_finidev): - - Removed trailing whitespace. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-06 23:46 mkrufky - - * msp3400.c: (msp_detach): - - check ->kthread correctly - - Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-07 21:35 nshmyrev - - * Makefile: - * saa7134-alsa.c: (saa7134_dma_stop), (saa7134_dma_start), - (saa7134_irq_alsa_done), (snd_card_saa7134_capture_trigger), - (dsp_buffer_conf), (dsp_buffer_init), - (snd_card_saa7134_pcm_prepare), (snd_card_saa7134_capture_prepare), - (snd_card_saa7134_pointer), (snd_card_saa7134_capture_pointer), - (snd_card_saa7134_runtime_free), (snd_card_saa7134_hw_params), - (snd_card_saa7134_hw_free), (dsp_buffer_free), (saa7134_cap_close), - (saa7134_cap_open), (snd_card_saa7134_capture_open), - (snd_card_saa7134_capture_close), (snd_card_saa7134_pcm), - (snd_saa7134_volume_info), (snd_saa7134_volume_get), - (snd_saa7134_volume_put), (snd_saa7134_capsrc_info), - (snd_saa7134_capsrc_get), (snd_saa7134_capsrc_put), - (snd_card_saa7134_new_mixer), (snd_saa7134_free), - (snd_saa7134_dev_free), (alsa_card_saa7134_create), - (alsa_card_saa7134_exit): - * saa7134-core.c: (saa7134_irq), (saa7134_initdev), - (saa7134_finidev): - * saa7134-oss.c: (dsp_rec_start): - * saa7134-reg.h: - * saa7134.h: - - Alsa support for saa7134 that should work. Wonderful - patch from Ricardo. - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - -2005-10-06 Nickolay V. Shmyrev <nshmyrev@yandex.ru> - - * saa7134-cards.c: - * saa7134-video.c: (saa7134_video_init1): - * saa7134.h: - - - Implement some differences in video output port - register initialization between existing boards and RTD Embedded - Technologies VFG7300 boards. - - Signed-off-by: Robert W. Boone <rboone@rtd.com> - -2005-10-06 16:10 nshmyrev - - * Makefile: - * em2820-i2c.c: (em2820_set_tuner): - - Fixed build. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-06 15:27 mchehab - - * doc/CARDLIST.em2820: - * scripts/cardlist: - * scripts/em2820.pl: - - Added scripts and CARDLIST for em2820. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-06 14:26 mchehab - - * Make.config,Makefile,compat.h,em2820-cards.c,em2820-core.c, - em2820-video.c,em2820.h: - - Added support for Empia Tech em2820/2840 chipset boards. - * tvp5150.c: (tvp5150_write), (tvp5150_selmux), (tvp5150_reset), - (tvp5150_get_ctrl), (tvp5150_set_ctrl), (tvp5150_command), - (tvp5150_detect_client), (tvp5150_attach_adapter), - (tvp5150_detach_client), (tvp5150_init), (tvp5150_exit): - - Added some V4L2 API calls. - - Signed-off-by: Markus Rechberger <mrechberger@gmail.com> - Signed-off-by: Ludovico Cavedon <cavedon@sssup.it> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-06 03:07 mkrufky - - * bttv-cards.c: - - Enable S-Video input on DViCO FusionHDTV5 Lite - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-05 14:32 nshmyrev - - * saa7134-alsa.c: (saa7134_start_audio_dma), - (saa7134_stop_audio_dma), (saa713401_timeout), (saa713401_aud_irq), - (saa7134_irq), (snd_saa7134_set_digital_hw), - (snd_saa7134_pcm_open), (snd_saa7134_close), - (snd_saa7134_hw_params), (snd_saa7134_hw_free), - (snd_saa7134_prepare), (snd_saa7134_card_trigger), - (snd_saa7134_pointer), (snd_saa7134_pcm), - (snd_saa7134_capture_volume_info), - (snd_saa7134_capture_volume_get), (snd_saa7134_capture_volume_put), - (snd_saa7134_capture_source_info), - (snd_saa7134_capture_source_get), (snd_saa7134_capture_source_put), - (snd_saa7134_free), (snd_saa7134_dev_free), (snd_saa7134_create), - (saa7134_audio_initdev), (saa7134_audio_finidev), - (saa7134_audio_init), (saa7134_audio_fini): - - Placeholder for implementation for alsa support in saa7134. - -2005-10-05 14:31 nshmyrev - - * tda9887.c: (dump_write_message): - - Corrected settings for SECAM-L. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-05 04:10 mkrufky - - * cx88.h, cx88-cards.c: (cx88_card_setup): - - Added analog support for ATI HDTV Wonder - - * tuner.h, tuner-simple.c: (default_set_tv_freq): - - Added support for the Philips TUV1236D tuner on the ATI HDTV Wonder - - Signed-off-by: Kirk Lapray <kirk.lapray@gmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-04 17:14 mkrufky - - * bttv-cards.c: - - Changed { .pll = 1, } to { .pll = PLL_28, } - on BTTV_BOARD_MACHTV "MachTV". - - * bttv.h: - - Cleaned up spacing to be uniform for BTTV_BOARDS - - * doc/CARDLIST.bttv: - - Added Osprey 440 card. - - * doc/CARDLIST.cx88: - - Added Kworld Vstream ExpertDVD. - - * saa7134-tvaudio.c: (mute_input_7134): - - Removed trailing whitespace. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-04 15:42 nshmyrev - - * bttv-cards.c: - * bttv.h: - - Added Osprey 440 card. - - Signed-off-by: Kenth Andersson <kenth@popwire.com> - -2005-10-04 15:00 nshmyrev - - * saa7134-tvaudio.c: (mute_input_7134): - - Full mute of saa7134 on mute command. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-04 14:50 nshmyrev - - * saa7134-cards.c: (saa7134_board_init1): - * saa7134-input.c: (saa7134_input_init1): - - Remote for KWorld Terminator. - - Signed-off-by: James R. Webb <jrwebb@qwest.net> - -2005-10-04 14:46 nshmyrev - - * cx88-tvaudio.c: (set_audio_registers), (set_audio_start), - (set_audio_finish), (set_audio_standard_BTSC), - (set_audio_standard_NICAM), (set_audio_standard_A2), - (set_audio_standard_EIAJ), (set_audio_standard_FM), - (cx88_detect_nicam), (cx88_set_tvaudio), (cx88_get_stereo), - (cx88_set_stereo), (cx88_audio_thread): - - Reindent cx88-tvaudio.c to keep coding style. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-10-04 14:32 nshmyrev - - * cx88-cards.c: - * cx88.h: - - Added Kworld Vstream ExpertDVD. - - Signed-off-by: Alexander Wold <awold@bigfoot.com> - -2005-10-03 19:37 mkrufky - - * saa7134-cards.c: (saa7134_board_init1): - * saa7134-input.c: (saa7134_input_init1): - - enable support for the IR Remote on Compro Videomate T200 - - From: Andy Smith <linux-dvb@andrewsmith.plus.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-10-02 22:46 mchehab - - * bttv-cards.c: (bttv_init_card2): - * bttv.h: - - Added new card: Prolink PixelView PlayTV MPEG2 PV-M4900 - Thanks to: Srgio Fortier <sergiofortier@yahoo.com.br> - - Added support for radio_addr. Should also allow radio on - separated I2C address than TV tuner. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-02 11:39 mchehab - - * Make.config: - - Default not compiling tvp5150.c - - * audiochip.h: - - Included audio chips enum - - * tveeprom.c: (hasRadioTuner), (tveeprom_hauppauge_analog), - (tveeprom_read): - - Added a new tuner tradution. - - Now, returns audio chip according with enum audiochip. - This allows audio chip autodetection as used on em28xx. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-10-01 16:53 mkrufky - - * scripts/merge-trees.sh, scripts/unmerge-trees.sh: - - dvb-bt8xx and DST build re-renabled in tree-merge. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-30 15:21 mchehab - - * saa7134-cards.c: (saa7134_board_init1): - * saa7134-input.c: (saa7134_input_init1): - - Added IR for LifeView FlyTV Platinum Mini2. - - Signed-off-by: Arnaud Patard <apatard@mandriva.com> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-30 00:01 mkrufky - - * bttv-cards.c, saa7134-input.c: - - strip trailing whitespace. - - * scripts/merge-trees.sh, scripts/unmerge-trees.sh: - - V4L: WARNING! bt8xx tree-merge is currently broken. - If you need this feature, please use an older video4linux cvs: - cvs co -D 9/29/05 video4linux - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-29 20:40 mchehab - - * doc/CARDLIST.bttv: - - Others PCI ID added. - - * scripts/bttv.pl: - - Script fixed. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-29 20:23 mchehab - - * doc/CARDLIST.tuner: - - Updated an entry to reflect changes on tuner-simple.c - - * doc/CARDLIST.bttv: - - Added PCI subvendor ID to boards that have it - - * scripts/bttv.pl: - - New script to generate PCI subvendor ID - - * scripts/cardlist: - - Modified to generate also PCI ID for bttv boards. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-29 19:45 mchehab - * bttv-cards.c: (identify_by_eeprom), (miro_pinnacle_gpio), - (bttv_init_card1), (bttv_init_card2), (osprey_eeprom), - (bttv_tda9880_setnorm), (boot_bt832): - * bttv-driver.c: (i2c_vidiocschan), (set_tvnorm): - * bttv.h: - * ir-kbd-gpio.c: (ir_probe): - - Boards renamed to BTTV_BOARD_xxx - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-29 18:40 mchehab - - * bttv-cards.c: - - Boards now use the same CodingStyle as cx88 and saa7134. - - * bttv.h: - - Included missing card numbers - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-29 18:20 nshmyrev - - * tda8290.c: (set_audio), (set_tv_freq): - * tuner.h: - - Set IF of tda8275 according to tv norm. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-09-29 13:59 mchehab - - * doc/CARDLIST.saa7134: - * saa7134-cards.c: - * saa7134.h: - - Added support for LifeView FlyTV Platinum Mini2. - - Signed-off-by: Arnaud Patard <apatard@mandriva.com> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-29 14:23 mchehab - - * scripts/cx88.pl: - - New script to include PCI ID for cx88 boards. - - * doc/CARDLIST.cx88: - - Cardlist updated. Now includes PCI ID for each board. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-28 20:04 nshmyrev - - * saa7134-cards.c: (saa7134_board_init1): - * saa7134-input.c: (saa7134_input_init1): - - Add remote for DVB-T300 Remote. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-09-28 20:04 nshmyrev - - * bttv-cards.c: - - Fix source charset. Make symbols UTF-8. - - Signed-off-by: David Woodhouse <dwmw2@infradead.org>. - -2005-09-28 19:43 nshmyrev - - * saa6752hs.c: (saa6752hs_chip_command), (saa6752hs_set_bitrate), - (saa6752hs_init), (saa6752hs_attach), (saa6752hs_command): - - Change the number of lines in the input signal when the - video standard is changed. - - Fix comments style. - - Signed-off-by: Robert W. Boone <rboone@rtd.com> - -2005-09-28 19:27 nshmyrev - - * tuner-simple.c: - * tuner.h: - * tveeprom.c: - - update the tveeprom tuner list with the tuner - list from the Hauppauge driver - - connect the TCL MPE05-2 tveeprom entry to the - TUNER_PHILIPS_FM1216ME_MK3 tuner. - - based on this info renamed the "LG PAL (TAPE series)" - tuner to "TCL 2002MB". - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - -2005-09-28 19:07 nshmyrev - - * bttv-driver.c: (set_pll): - * bttvp.h: - - Rename vprintk to verbose_printk to fix name clash. - - Signed-off-by: Bernd Petrovitsch <bernd@firmix.at> - -2005-09-28 00:47 mchehab - - * msp3400.c: (msp3400c_setvolume), (msp34xx_modus), (msp_attach), - (msp_command): - - Some V4L2 API calls implemented. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-24 16:10 mkrufky - - * bttv-cards.c: - - corrected composite input gpio for DViCO FusionHDTV5 Lite. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-24 19:34 mkrufky - - * bttv-cards.c: - - fixed GPIO composite and off (dvb) states to prevent - lgdt3303 frontend from dying on input source change, - for DViCO FusionHDTV5 Lite. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-24 17:03 mkrufky - - * compat.h: - - Previous commit prevents tda1004x & lgdt330x support in tree-merge - for kernels < 2.6.13. Fixed using DVB_CVS flag, set in tree-merge - Makefile. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-24 01:05 mkrufky - - * bttv-cards.c: - - Fixed a bug: ATSC Frontend dies after using analog tuner. - audiomux[4] must be programmed to prevent this bug. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-23 11:56 mchehab - - * tvp5150.c: (tvp5150_selmux), (tvp5150_reset), (tvp5150_command), - (tvp5150_detect_client): - - Fixed input selection. - - Default now is to autodetect every video standard. - - Implemented interface to change video preferences. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-22 22:50 hhackmann - * saa7134.h: - - increased size if eeprom dump to 128 bytes - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> - -2005-09-21 16:08 mchehab - - * Makefile, Make.config: - - Included tvp5150. - - * tvp5150.c: - - Basic decoder functions implemented. - Still lacks video std functions. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-21 00:53 mkrufky - - * compat.h: - * cx88-dvb.c: - * saa7134-dvb.c: - * scripts/merge-trees.sh: - * scripts/unmerge-trees.sh: - - move some #if kernel version into compat.h - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-19 15:28 mchehab - - * tvp5150.c,tvp5150_reg.h: - - Initial code for Texas Instruments TVP5150A and TVP5150AM1 - only sets a video stream and dumps reg contents. More work - required. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-19 01:11 mkrufky - - * saa6588.c: (saa6588_probe): - - fix build for 2.6.14 - - * compat.h: - * ir-kbd-i2c.c: (ir_probe): - * saa7134-i2c.c: - * tvaudio.c: (chip_probe): - - removed some #if kernel version > 2.6.13 ... using compat.h instead. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-16 20:24 mchehab - - * bttv-cards.c: - - Added Prolink Pixelview PV-BT878P+ (Rev.2E) compatibility - to the bttv driver. It's now card=138 and it works at least - for tv, sound and radio. - - Signed-off-by: Luis Miguel Garca <ktecho@gmail.com> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-15 03:01 mkrufky - - * tvaudio.c: (chip_write), (chip_read), (chip_read2), (chip_cmd), - (chip_thread), (generic_checkmode), (tda8425_initialize), - (chip_attach), (chip_probe), (chip_command): - - Step three (final step) in upstream changes for - kernel 2.6.14-rc1 compatability. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-15 23:42 nshmyrev - - * cx88-core.c: - - Remove some #if 0 which doesn't have any sense - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-09-15 23:22 nshmyrev - - * saa7134-video.c: - Fix for kernel bug #4544. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-09-15 23:11 nshmyrev - - * saa7134-core.c: (saa7134_hwinit1): - - Fix for problem with audio register setup via DSP access - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - Signed-off-by: Robert W. Boone <rboone@rtd.com> - -2005-09-14 22:00 nshmyrev - - * saa6588.c: - - Improved coding style for timer settings - - Signed-off-by: Hans J. Koch <koch@hjk-az.de> - -2005-09-14 18:34 nshmyrev - - * saa7134-cards.c: (saa7134_board_init1): - * saa7134-reg.h: - * saa7134-video.c: (video_do_ioctl): - * saa7134.h: - - Add new RTD cards - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - Signed-off-by: Robert W. Boone <rboone@rtd.com> - -2005-09-13 20:09 mkrufky - - * bt832.c: (bt832_probe): - * bttv-i2c.c: (attach_inform): - * cx88-i2c.c: (attach_inform), (detach_inform): - * id.h: - * ir-kbd-i2c.c: (ir_probe): - * msp3400.c: (msp34xx_sleep), (msp_attach): - * saa6588.c: - * saa6752hs.c: - * saa7134-i2c.c: (attach_inform): - * saa7134-tvaudio.c: (tvaudio_sleep): - * tda7432.c: (tda7432_probe): - * tda9875.c: (tda9875_probe): - * tda9887.c: (tda9887_probe): - * tuner-core.c: - * tveeprom.c: (tveeprom_attach_adapter): - * tvmixer.c: (tvmixer_ioctl), (tvmixer_clients), - (tvmixer_cleanup_module): - * video-buf.c: (videobuf_dma_free): - - Step two, in preparation for 2.6.14-rcX compatability: - - Compile tested against vanila kernels 2.6.13 & 2.6.8 - - 2.6.14 compile still broken... - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-13 19:04 mchehab - - * scripts/buildpatch: - - Fixed a problem when commiting <dolar>Id with CVS. - - * tuner-core.c: (tuner_command): - - Better debug info for non-implemented iocts. - * tveeprom.c: - - Fixed compiling with gcc2.9x (thanks to Andrew Morton). - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-13 16:22 mkrufky - - * bttv-cards.c, bttv-driver.c: - * msp3400.c, tda9887.c, tuner-core.c: - - Step one, in preparation for 2.6.14-rcX compatability: - -#ifdef MM_KERNEL - +#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,13) - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-11 22:20 hhackmann - * saa7134.h, saa7134-cards.c, saa7134-core.c: - - added support for the following cards - Philips EUROPA Reference Design - Compro VideoMate DVB-T300 - Compro VideoMate DVB-T200 (initial) - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> - -2005-09-12 22:00 hhackmann - * tuner.h, tuner-core.c, tuner-simple.c: - - added support for the Philips TD1316 tuner - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> - -2005-09-11 21:35 hhackmann - * saa7134-ts.c: - - TS DMA buffer synchronization was inverted - - DMA buffer size was not set correctly in the SAA713x - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> - -2005-09-11 05:29 mkrufky - - * bttv-cards.c: - - duplicate initializer - (near initialization for `bttv_tvcards[9].tuner_addr') - duplicate initializer - (near initialization for `bttv_tvcards[11].tuner_addr') - - * cx88-input.c, tuner.h, tvaudio.c, tveeprom.c: - - Work around gcc-2.95.x macro expansion bug - - Signed-off-by: Andrew Morton <akpm@osdl.org> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-11 04:56 mkrufky - - * cx88-core.c: (cx88_risc_decode): - * cx88-video.c: (video_read): - * cx88.h: - - Fix a number of sparse warnings. - - * videodev2.h: - - strip trailing whitespace. - - Signed-off-by: Peter Hagervall <hager@cs.umu.se> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-11 01:15 mchehab - - * videodev2.h: - - adds all defines, ioctls and structs needed for the sliced VBI API - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-10 10:29 mchehab - - * cx88-core.c: (set_tvaudio): - * cx88-tvaudio.c: (set_audio_standard_NICAM), - (set_audio_standard_A2), (cx88_detect_nicam), (cx88_set_tvaudio), - (cx88_newstation), (cx88_set_stereo): - * cx88.h: - - some clean up in cx88-tvaudio.c - - replaced hex values when writing to AUD_CTL to EN_xx for better reading. - - Moved writing to register AUD_CTL from "set_audio_start" to - "set_audio_finish". - - Changed the order of writing Lang2 to work correctly - - Added an "#if 0" to comment out existing code in "cx88_get_stereo" - because simply reading from register "AUD_STATUS" is _not_ enough to - auto-detect btsc-sap, dual-fm-stereo or nicam. It is simply not working. - - Using "EN_A2_AUTO_STEREO" does not work. - - Allow select by hand between Mono, Lang1, Lang2 and Stereo. - - *Bad side effect* is now if I'm selecting for example stereo but it is not - supported from tv-channel I'm currently receiving loud noise. - - Signed-off-by: Torsten Seeboth <Torsten.Seeboth@t-online.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-10 08:15 mchehab - - * tda8290.c: - - Included CB3 structures that should be changed according with - video std. The code itself to implement it was not made. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-10 07:28 mkrufky - - * bttv-cards.c: - - Enable DVB support for DViCO FusionHDTV5 Lite. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-10 07:26 nshmyrev - - * saa7134-input.c: - - Refine input handling for Manli/Beholder. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-09-10 06:57 nshmyrev - - * tuner-simple.c: - - Lower switch from VHF_LO to VHF_HI for Philips 1216ME MK3 - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - Signed-off-by: Hermann Pitton <hermann.pitton@onlinehome.de> - -2005-09-08 23:06 nshmyrev - - * i2c-kbd-gpio.c: - - Use KEY_MEDIA instead of KEY_VIDEOMODESWITCH since - it fix build with older kernels. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - Signed-off-by: James Schettine <james@NOSPAM.MyVnc.com> - -2005-09-07 10:30 nshmyrev - - * doc/CARDLIST.saa7134: - * saa7134-cards.c: (saa7134_board_init1): - * saa7134-input.c: (saa7134_input_init1): - * saa7134.h: - - Added new card GoTView PCI 7135 - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - Signed-off-by: Mike Baikov <mike@baikov.com> - -2005-09-07 05:29 mkrufky - - * cx88-dvb.c: (lgdt330x_pll_set): - - Removed unnecessary check for tda9887. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-07 04:59 mkrufky - - * bttv-cards.c: (bttv_init_card1), (bttv_init_card2): - * bttv-driver.c: - - don't enable gpioirq until after card probe. - - Pinnacle PCTV-Sat fifo overrun error fix. - - Thanks to: Edgar Toernig <froese@gmx.de> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-07 03:51 mkrufky - - * bttv-cards.c, bttv.h, ir-kbd-gpio.c: - * doc/CARDLIST.bttv: - - add bttv card 137 - Conceptronic CTVFMi v2 - - some ir buttons seem to be duplicated, explained - by comments within source. - - Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-07 00:57 mkrufky - - * cx88-core.c: (cx88_core_get): - * cx88-dvb.c: (dvb_register): - - Implemented TUNER_SET_STANDBY on cx88 init. - Additional call is necessary in cx88-dvb, to prevent - noise on initialization of FusionHDTV5 Gold. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-07 00:02 mkrufky - - * cx88-dvb.c: (dvb_buf_prepare): - - Climov's previous patch <missing changelog entry>: - Implemented the v4l2 mpeg api for blackbird cards. - His commit broke cx88-dvb. Here is the fix. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-05 15:30 nshmyrev - - * doc/CARDLIST.saa7134: - * saa7134-cards.c: (saa7134_board_init1): - * saa7134-input.c: (saa7134_input_init1): - * saa7134.h: - - Added new card Behold TV 409 FM. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - Signed-off-by: Sergey <skiv@orel.ru> - -2005-09-05 15:01 nshmyrev - - * cx88-cards.c: - * cx88.h: - - Added new card AverMedia UltraTV Media Center PCI 550 - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - Signed-off-by: Michael Fair <michael at daclubhouse dot net> - -2005-09-05 14:56 nshmyrev - - * saa7134-cards.c: - - Added support for OEM version of FlyTV Platinum mini with a - subvendor id of 0x4e42. - - Added the OEM PCI id's to the docs/CARDLIST.saa7134 for item 39 - - Modified the vmux in the SAA7134_BOARD_FLYTVPLATINUM_MINI driver - data from 0 (Composite over S-Video) to 3 (Composite). - - Signed-off-by: Glen Gray <glen@lincor.com> - -2005-09-04 13:32 mkrufky - - * cx88-input.c: (cx88_ir_init): - * ir-kbd-gpio.c: (ir_probe): - - Fixed broken compile, due to input event device patch. - - Signed-off-by: Michael Fair <michael@daclubhouse.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-04 11:40 mchehab - - * msp3400.c: (msp34xx_modus): - - Add KEEP comment on #if 1 to allow it to go to mainstream - * tvaudio.c, video-buf-dvb.h: - - Changes to eliminate dumb differences from kernel and to - eliminate $Id from Mainstream. - * scripts/buildpatch: - - Improved to allow keeping some #if 1 comments go to mainsteam - - Don't generate diffstat for empty changes. - - Remove $Id when generating patches. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-02 21:57 mchehab - - * cx88-input.c: (cx88_ir_init): - * ir-kbd-gpio.c: (ir_probe): - * saa7134-input.c: (saa7134_input_init1): - - Makes the input event device created by the V4L drivers for the - infrared remote matchable by udev rules. - - Signed-off-by: Rudo Thomas <rudo@matfyz.cz> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-02 21:18 mchehab - - * msp3400.c: - - added some missing parameter descriptions. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-09-01 21:28 mkrufky - - * tda9887.c: (tda9887_fixup_std): - * tuner-core.c: (tuner_fixup_std): - - print warning if pal= or secam= argument is unrecognized - - Signed-off-by: Philip Rowlands <phr@doc.ic.ac.uk> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-09-01 21:17 mkrufky - - * saa7134-cards.c: - - correct the amux for composite and - s-video inputs on the Sabrent SBT-TVFM card. - - Thanks to: Michael Rodriquez-Torrent <mike@themikecam.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-30 19:52 mkrufky - - * saa7134-dvb.c: - - #include <linux/config.h> no longer needed. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-30 15:11 mkrufky - - * cx88-video.c: (cx8800_resume): - - removed trailing whitespace. - - * tuner-simple.c: (default_set_radio_freq): - - The Microtune 4049FM5 uses an IF frequency of 33.3 MHz for FM radio. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-30 14:58 mchehab - - * bttv-driver.c, cx88-mpeg.c, cx88-video.c: - - Some error treatment implemented at resume functions. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-30 05:15 mkrufky - - * tuner-simple.c: - - Change LG TDVS H062F from NTSC to ATSC. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-30 05:09 mchehab - - * bttv-cards.c, cx88-cards.c, tveeprom.h: - - tveeprom patch was not complete. Completing it. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-30 04:44 mchehab - - * tuner-simple.c, tuner.h: - - normalize whitespace and comments in tuner lists. - - Signed-off-by: Philip Rowlands <phr@doc.ic.ac.uk> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-30 04:31 mchehab - - * tveeprom.c: - - tveeprom_hauppauge_analog has an extra i2c_client * argument. - This allows for clearer message prefixes containing the i2c - adapter number and address. This is conform the prefix used - for the tuner messages. - - debugging is improved: debug=1 will dump the full contents - of the eeprom and also show each tag that is parsed. The layout - of the debug output is now clean. - - the eeprom can contain two tuner records, the first for the - TV tuner, the second for a radio tuner (this is the case for - the PVR500). Added support for this, also added the TEA5767 - radio tuner to the tuner list. - - the audio processor index is now mapped to a string. - - the video decoder processor tag is now implemented. - - all TV standards supported by the tuner are shown. - - show if radio or IR is present. - - add comments showing what other tags exist. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-30 04:21 mchehab - - * tvaudio.c: - - adds the adapter number + i2c address to printk msgs. - - Some CodingStyle cleanups. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-30 02:40 mkrufky - - * cx88-dvb.c: - - #include <linux/config.h> no longer needed. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-28 18:15 mkrufky - - * scripts/merge-trees.sh, scripts/unmerge-trees.sh: - - include files into tree-merge necessary for the - dvb-bt8xx and dst dvb modules, based on bt8xx chips. - This also includes all dvb frontends used by bt8xx boards. - - * bttv.h, videodev.h: - - #include "compat.h", needed for tree-merge. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-25 05:59 mkrufky - - * cx88-dvb.c: (dvb_register): - - report dvb frontend name instead of cx88 card name. - - * bttv-cards.c, doc/CARDLIST.bttv: - - Change DVICO to DViCO. - - * saa7134-cards.c: - - Remove bad PCI subsystem ID for Sabrent card. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-22 18:29 mkrufky - - * saa7134-cards.c, saa7134.h: - - Add saa713x card #66: Yuan TUN-900 (saa7135) - PCI subsystem ID of this board is 12ab:0800, same as - 36 -> UPMOST PURPLE TV, which SHOULD be 1154:0522. - We are applying this for now without autodetection based - on PCI subsystem ID. This will be fixed later. - - Signed-off-by: De Greef Sebastien <sebdg@hotmail.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-21 16:36 mkrufky - - * saa7134-cards.c, saa7134.h: - - Add saa713x card #65 - Kworld V-Stream Studio TV Terminator - Thanks to: James R Webb <jrwebb@qwest.net> - and Peter Missel <peter.missel@onlinehome.de> - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-20 22:08 mchehab - - * tuner-simple.c: - - correct LG NTSC TALN mini tuner takeover as far we can - empirically determine for now. - - Signed-off-by: Hermann Pitton <hermann.pitton@onlinehome.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-20 17:37 mchehab - - * tveeprom.c: (tveeprom_command): - - This syncs the tuners list with the list from ivtv. - - Fixes the incorrect reporting of the radio presence. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-20 17:30 mchehab - - * msp3400.c: (msp_attach): - - Changes the prefix to 'msp34xx' instead of 'msp3400'. - - Changes the message 'error while reading chip version' to a - debug printk. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-20 14:03 mkrufky - - * bttv-i2c.c: - - added i2c address for lgdt330x. - - * tuner.h: - - i2c-core.c uses hexadecimal for the i2c address, - so we should stay consistent. - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-20 05:39 mkrufky - - * scripts/buildpatch: - - evaluate #ifdef MM_KERNEL based on existance of $LINUX . "/.mm" - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-19 20:37 mchehab - - * tuner.h: - - changed tuner_info from dev_printk to i2c_client info. - - used do { } while(0) according with CodingStyle - - Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-19 15:48 mkrufky - - * cx88-dvb.c: - * scripts/merge-trees.sh, scripts/unmerge-trees.sh: - - fix compile of cx88-dvb for lgdt330x in 2.6.13 - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-18 00:00 catalin - - * cx88-blackbird.c: - - fix mpeg packet size & count - - add VIDIOC_QUERYCAP ioctl for the mpeg stream - - return more information in the struct v4l2_format - - fix default window height - - * cx88-video.c: - - small cleanups - - Signed-off-by: Catalin Climov <catalin@climov.com> - -2005-08-17 19:40 nsh - - * cx88-dvb.c: (lgdt330x_pll_set): - * cx88-video.c: (video_release): - * mt20xx.c: (microtune_init): - * saa7134-video.c: (video_release): - * tda8290.c: (standby), (tda8290_init): - * tda9887.c: (tda9887_set_tvnorm), (tda9887_configure), - (tda9887_command): - * tea5767.c: (set_radio_freq), (tea5767_standby), - (tea5767_tuner_init): - * tuner-core.c: (set_addr), (check_mode), (set_mode), - (tuner_command): - * tuner-simple.c: (default_tuner_init): - * tuner.h: - - - New tuner standby API. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-08-17 09:58 mchehab - - * cx88-reg.h: - - Added some registers to control PCI controller at CX2388x chips. - - * cx88-tvaudio.c: - - BTSC Lang1 now is set to auto_stereo mode. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-16 18:00 catalin - - * cx88-blackbird.c: - - fall back to cx88_do_ioctl instead of returning -EINVAL - - * cx88-core.c: - - initialize the core mutex - - * cx88.h: - - move lock and freq struct members from cx8800/cx8802 to cx88_core - - declare cx88_do_ioctl from cx88-video.c - - * cx88-mpeg.c: - - remove mutex init - - * cx88-video.c: - - replace dev->lock with core->lock - - replace struct cx8800_dev with struct cx88_core param in functions: - video_mux, get_control, set_control, init_controls - - factor out common ioctl's to cx88_do_ioctl and export the symbol - - Signed-off-by: Catalin Climov <catalin@climov.com> - -2005-08-16 17:45 catalin - - * cx88-blackbird.c: - - add ioctl indirection via cx88_ioctl_hook and cx88_ioctl_translator - - export the indirection hook symbols - - * cx88.h: - - declare the indirection hooks from cx88-blackbird.c - - * cx88-video.c: - - dcprintk macro which uses core instead of dev->core - - replace dev->core occurances with core - - replace spaces with tabs - - Signed-off-by: Catalin Climov <catalin@climov.com> - -2005-08-15 23:43 mchehab - - * cx88-alsa.c: - - Some fixups. Still incomplete. - - * cx88-core.c: - - New error message. - - spaces replaced by tabs. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-15 01:51 mchehab - - * cx88-alsa.c: - - some DMA code included. Still incomplete. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-14 10:57 mchehab - - * Make.config, Makefile: - - cx88-alsa module compiling disabled by default. - to turn on, CONFIG_VIDEO_ALSA = m - anyway, it didn't provide digital audio yet. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-13 22:56 mchehab - - * Makefile: - - corrected to generate cx88-alsa.ko - - * cx88-alsa.c: - - snd register working. Also Capture control. - - pending: pcm functions and fix some trouble when inserting it - with other cx88 functions (cx8800) for example. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-12 23:47 nshmyrev - * compat.h: - - Fix build with kernel earlier than 2.6.9. - - Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-08-11 17:35 mkrufky - * bttv-cards.c: - - card #135, DVICO FusionHDTV 5 Lite: - Altered card settings to make autodetection less verbose. - - card #136, Acorp Y878F: - Moved subsystem id detection out of "DVB cards" area and - into a more appropriate location. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-11 17:14 mkrufky - * tda9887.c, cx88-dvb.c: - - This patch addresses valid objections to experimental code used to - mute the tda9887 when the tuner is used for digital TV reception. - That code is removed and replaced by a better solution. Comments - have been added, indicating that t_standby should be implemented - in the future. - - Signed-off-by: Mac Michaels <wmichaels1@earthlink.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-10 16:52 mchehab - - * Make.config, Makefile: - - Added support for future alsa support, yet to be finished. - - * bt87x-alsa.c: - - bt87x.c that is inside ALSA tree. Yet to make it compile from here. - - * cx88-alsa.c,cx88.h: - - cx88 ALSA skeleton. It is not yet working. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-10 16:52 mchehab - * cx88-video.c: - - Added some comments about DMA stuff. - - Removed obsolete code. - - * tea5761.c: - - Removed an incorrect comment that cames from tea5767.c file. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-10 03:50 mchehab - * bttv-cards.c: - - It removes occurence of pci_find_device (depreciated) in the - kernel tree, replacing to to pci_get_device. - Generated in 2.6.13-rc5-mm1 kernel version. - - Signed-off-by: Jiri Slaby <xslaby@fi.muni.cz> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-09 18:57 mchehab - - * cx88-input.c - - Added support for remote control to Cinergy DVBT-1400. - - * ir-common.c, ir-common.h: - - local var renamed from rc5 to a better name (ircode). - - Added a new NEC protocol based on pulse distance. - - Signed-off-by: Uli Luckas <luckas@musoft.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-07 17:35 mchehab - - * cx88-tvaudio.c: - - Support for BTSC improved. - - Signed-off-by: Torsten Seeboth <Torsten.Seeboth@t-online.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-07 16:57 mchehab - - * cx88-tvaudio.c: - - some clean up in cx88-tvaudio.c - - replaced hex values when writing to AUD_CTL to EN_xx for better reading. - - Moved writing to register AUD_CTL from "set_audio_start" to - "set_audio_finish". - - Changed the order of writing Lang2 to work correctly - - Added an "#if 0" to comment out existing code in "cx88_get_stereo" - because simply reading from register "AUD_STATUS" is _not_ enough to - auto-detect btsc-sap, dual-fm-stereo or nicam. It is simply not working. - - Using "EN_A2_AUTO_STEREO" does not work. - - Allow select by hand between Mono, Lang1, Lang2 and Stereo. - - *Bad side effect* is now if I'm selecting for example stereo but it is not - supported from tv-channel I'm currently receiving loud noise. - - Signed-off-by: Torsten Seeboth <Torsten.Seeboth@t-online.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-07 09:16 mkrufky - * cx88-dvb.c, cx88-cards.c, tuner-core.c: - - Enable ATSC support for DViCO FusionHDTV5 Gold. - - Signed-off-by: Mac Michaels <wmichaels1@earthlink.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-06 14:51 mkrufky - * tda9887.c: - - Correct the deemphasis for NTSC to 75us. - - Signed-off-by: Mac Michaels <wmichaels1@earthlink.net> - Signed-off-by: Hermann Pitton <hermann.pitton@onlinehome.de> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-05 08:26 mkrufky - * cx88-cards.c: - - Corrected GPIO values for cards #28 & #31 for s-video and composite. - - added tda9887_conf to DViCO FusionHDTV5 Gold (card #31). - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-04 04:00 nshmyrev - * saa7134-card.c, saa7134.h, tuner.h, tuner-simple.c: - - Add new Digimatrix card and LG TAPC Mini tuner for it - - Signed-off-by: Hermann Pitton <hermann.pitton@onlinehome.de> - -2005-08-04 03:29 mkrufky - * cx88-cards.c: - - Corrected GPIO values based on regspy for the following cx88 cards: - card=28 DViCO FusionHDTV3 Gold-T - card=31 DViCO FusionHDTV5 Gold - No noticeable change in behavior. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-04 00:51 mchehab - - * bttv-driver.c: - - New debug warn when no_overlay active. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-03 21:10 mchehab - - * bttv-cards, bttv-driver.c: - - no_overlay type changed to int. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-03 20:39 mkrufky - * bttv-cards.c: - - Better wording in debug messages for no_overlay. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-03 20:16 mchehab - - * bttv-cards.c, bttv-driver.c: - - no_overlay now behaves as described on docs. - - * doc/insmod-options: - - no_overlay flag description updated. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-03 19:38 mchehab - - * bttv-driver.c: - - Debug messages for no_overlay improved. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-03 12:16 nshmyrev - - * tveeprom.c: - - Resolve more tuner types. - - Signed-off-by: Hermann Pitton <hermann.pitton@onlinehome.de> - -2005-08-03 03:19 mchehab - - * scripts/buildpatch: - - treating MM_KERNEL as non-mm. - - * bttv-cards.c,bttv-driver.c: - - no_overlay bttv insmod parameter now works. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-08-01 16:36 mkrufky - * bttv-cards.c: - - Fixed audio GPIO on DViCO FusionHDTV5 Lite, bttv card # 0x87. - Analog functions on this board are now fully supported. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-08-01 02:56 mchehab - * tea5767.c: - - tea5767 autodetection fixed. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-31 20:40 mkrufky - * Makefile, scripts/merge-trees.sh, scripts/unmerge-trees.sh: - - Better method for Makefile to detect compilation against -mm tree. - Thanks to Sam Ravnborg <sam@ravnborg.org> - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-31 12:07 mchehab - * tea5767.c: - - removed #if 1 from newer tea autodetection code. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-30 19:40 mkrufky - * bttv-driver.c, msp3400.c, tda9887.c, tuner-core.c: - * Makefile, scripts/merge-trees.sh, scripts/unmerge-trees.sh: - - Fix cvs compile to work for both latest -linus and -mm trees. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-30 16:17 mkrufky - * cx88-dvb.c, scripts/merge-trees.sh, scripts/unmerge-trees.sh: - - Fix cvs compile for 2.6.13 - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-29 12:45 mchehab - * bttv-cards.c: - - Acorp Y878F PCI identifier corrected. Board has radio. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-29 05:10 mkrufky - * Makefile, scripts/merge-trees.sh, scripts/unmerge-trees.sh: - - Include logic to detect merged dvb/v4l cvs trees using - tree merging scripts, adding DVB_CVS to EXTRA_CFLAGS. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-28 18:29 mchehab - * bttv-cards.c, bttv.h, doc/CARDLIST.bttv: - - tuner_addr added. - - Added support for Acorp Y878F card. - - some spaces used for identation replaced by tabs. - - * doc/CARDLIST.tuner,tuner-simple.c,tuner.h: - - Added support for tuner Ymec TVF66T5-B/DFF - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-28 18:17 mkrufky - * bttv.h, bttv-cards.c: - - #define BTTV_ADLINK_RTV24 - corrected from 0x85 --> 0x86 - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-28 18:19 mchehab - * tuner-core.c: - - BTTV does generate some Unimplemented IOCTL log: - 0x40046d11(dir=1,tp=0x6d,nr=17,sz=4) means that it is sending - MSP3400 calls to non-msp3400 tuners. Warning eliminated. - VIDIOSAUDIO is also called. debug messages updated. It is still - requiring IOCTL implementation. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-28 05:19 mkrufky - * bttv-cards.c, bttv.h: - - Added card DViCO FusionHDTV5 Lite. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-27 18:47 mkrufky - * cx88-dvb.c: - - Correct PLL programming for FusionHDTV5 Gold. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-27 09:58 mchehab - * tea5767.c: - - tea5767_autodetection improved. - Newer code works with CX88. Should be tested with other chipsets - tea5767_tuner_init doesn't probe tuner anymore, allowing forcing - tuner to 5767. - * tuner-core.c: - - Debug messages simplified to allow printing on one 80 char line. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-27 04:46 mkrufky - * Makefile: - - Include logic to detect compilation against -mm kernels, - adding MM_KERNEL to EXTRA_CFLAGS. This test will be available - in -mm kernels 2.6.13-rc3-mm2 and later. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-27 02:42 mchehab - * tuner-core.c: - - Add new parameter to help identify radio chipsets: - show_i2c=1 will show 16 reading bytes from detected tuners. - - * tea5767.c: - - Improved autodetection code commented. Sometimes, it doesn't work. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-27 02:01 mkrufky - * cx88-mpeg.c: - - convert ugly if-else statement to switch-case. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-27 01:41 mkrufky - * cx88-mpeg.c: - - update for FusionHDTV 5 Gold. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-26 10:36 mchehab - * tea5767.c: - - tea5767_autodetection improved. It requires more testing. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-26 05:46 mkrufky - * cx88-dvb.c: - - adapt lgdt330x calls to structural changes within lgdt330x driver. - - add testing code for FusionHDTV5 Gold ATSC support. .dvb is #if 0'd - in cx88-cards.c It will be enabled after successful testing w/ hw. - - Signed-off-By: Mac Michaels <wmichaels1@earthlink.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-25 17:29 mchehab - * msp3400.c: - - try_to_freeze moved to the right place. - * tvaudio.c: - - Tvaudio lacks a refrigerator call. This patch fixes that. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Nigel Cunningham <ncunningham@suspend2.net> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-25 05:12 mkrufky - * cx88-dvb.c, cx88-i2c.c, Makefile: - - Undo accidental change in previous commit. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-25 05:06 mkrufky - * cx88-dvb.c, cx88-i2c.c, Makefile: - * scripts/merge-trees.sh, scripts/unmerge-trees.sh: - - Rename lgdt3302 to lgdt330x. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-24 22:08 mkrufky - * cx88-dvb.c, saa7134-dvb.c, Makefile: - - The #define CONFIG_DVB_* are actually CFLAGS set by Makefile. - CONFIG_* namespace is reserved for Kconfig. - This renames them back to HAVE_*. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-24 19:02 mkrufky - * cx88-dvb.c: - - Added DVB card setup for DViCO FusionHDTV5 Gold using TUA6034 pll. - This code is currently #if 0. It will be enabled - when lgdt3303 (or lgdt330x) is ready. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-24 17:39 mkrufky - * cx88-cards.c, cx88.h, tuner-simple.c, tuner.h: - - Added analog support for DViCO FusionHDTV5 Gold. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-23 09:49 mkrufky - * cx88-dvb.c, saa7134-dvb.c: - * scripts/merge-trees.sh, scripts/unmerge-trees.sh: - - fix compilation warning for missing lgdt3302 when - compiling against kernel 2.6.12 without DVB tree. - - replaced #IF CONFIG_DVB_* with #IFDEF CONFIG_DVB_* - - include linux/config.h - - Let kconfig / Makefile decide to include frontend-specific code. - (Properly functioning now) - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-22 16:27 mkrufky - * tveeprom.c: - - Recognize the MFPE05-2 Tuner. - - Setting confirmed by Hauppauge Tech Support. - - Signed-off-by: Graham Bevan <graham.bevan@ntlworld.com> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-22 05:07 mkrufky - * cx88-video.c: - - It is importand to write at first to MO_GP3_IO, see datasheet - on page 77: "2.3.3 GPIO Normal Mode". Importand is Bit 25 (GP3_MODE), - or it is already done in file "cx88-video.c" at - "static int video_mux(struct cx8800_dev *dev, unsigned int input)". - - From: Torsten Seeboth <Torsten.Seeboth@t-online.de> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-22 03:51 mkrufky - * scripts/merge-trees.sh: - - New script to symlink DVB frontend code from dvb-kernel cvs tree - into patched video4linux cvs tree for testing and development - across both trees. - - * scripts/unmerge-trees.sh: - - New script to be run after development, and before generating - patches or making cvs commits. This removes the symlinks to the - frontend code, and reverts the patch to the video4linux tree - created by merge-trees.sh . - - * saa7134-i2c.c: - - Removed trailing whitespace. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-22 00:50 mkrufky - * Makefile: - - Restore EXTRA_CFLAGS for DVB frontends previously removed in error. - These flags do not determine whether frontends are built, instead - they determine whether support for compatability with certain - frontends is built-into cx88-dvb.c and saa7134-dvb.c . With all of - these flags not set, both cx88-dvb and saa7134-dvb will report that - the frontend is not supported, no matter what frontend is present. - Both lgdt3302 and tda1004x are disabled within cx88-dvb and - saa7134-dvb, respectively, for kernel versions less than 2.6.13. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-21 21:53 mkrufky - * tveeprom.c, tveeprom.h: - - make two needlessly global structs static. - - #if 0 the EXPORT_SYMBOL'ed but unused function tveeprom_dump. - - Signed-off-by: Adrian Bunk <bunk@stusta.de> - -2005-07-21 21:08 hhackmann - * saa7134-i2c.c: - - Ensure a sufficient I2C bus idle time between 2 messages - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de> - -2005-07-20 08:03 mkrufky - * cx88-cards.c: - - Add support for the SVideo input on the GDI Black Gold. - - From: Peter Missel <peter.missel@onlinehome.de> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-20 07:40 mkrufky - * bttv-driver.c: - - pci_dma_supported() is called after pci_set_dma_mask() which - already did check that for us. The attached patch removes the - unneeded call to pci_dma_supported() - - Signed-off-by: Tobias Klauser <tklauser@nuerscht.ch> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-20 05:35 mkrufky - * cx88-dvb.c: - - Removed unnecessary comment. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-20 05:23 mkrufky - * cx88-dvb.c: - - Select the RF input connector based upon the type of - demodulation selected. ANT RF connector is selected for - 8-VSB and CABLE RF connector is selected for QAM64/QAM256. - This only affects the cards that use the Microtune 4042 tuner. - - This is patch #2 of a string of patches with counterparts in the - dvb-kernel tree affecting lgdt3302.c and lgdt3302.h - - Signed-off-by: Mac Michaels <wmichaels1@earthlink.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-20 05:18 mkrufky - * cx88-dvb.c: - - Remove the dvb_pll_desc from the frontend and replace with a - pll_set-callback to isolate the tuner programming from the frontend. - - This is patch #1 of a string of patches with counterparts in the - dvb-kernel tree affecting lgdt3302.c and lgdt3302.h - - Signed-off-by: Mac Michaels <wmichaels1@earthlink.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-19 18:18 mkrufky - * bttv-cards.c: - - Fix Bug 4395: modprobe bttv freezes the computer - http://bugme.osdl.org/show_bug.cgi?id=4395. - Date: Wed, 13 Apr 2005 03:20:08 - Patch by Manu Abraham and Gerd Knorr: - - Remove redundant bttv_reset_audio() which caused the computer to - freeze with some bt8xx based DVB cards when loading the bttv driver. - - This patch must have gotten lost during the orphaned v4l days... - - Signed-off-by: Johannes Stezenbach <js@linuxtv.org> - Signed-off-by: Andrew Morton <akpm@osdl.org> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-16 00:00 mchehab - * Makefile, cx88-dvb.c, saa7134-dvb.c: - - Now compiling also with linux-2.6.12 version. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-15 21:32 mchehab - * videodev.h: - - linux/version.h removed at linux-2.6.13-rc3-mm1. - - * bttv-driver.c,bttvp.h,cx88-alsa.c,cx88-blackbird.c,cx88-cards.c, - cx88-core.c,cx88-dvb.c,cx88-i2c.c,cx88-mpeg.c,cx88-tvaudio.c, - cx88-vbi.c,cx88-video.c,msp3400.c,mt20xx.c,saa6752hs.c, - saa7134-cards.c,saa7134-core.c,saa7134-dvb.c,saa7134-empress.c, - saa7134-i2c.c,saa7134-input.c,saa7134-oss.c,saa7134-ts.c, - saa7134-tvaudio.c,saa7134-vbi.c,saa7134-video.c,tda8290.c, - tda9887.c,tea5767.c,tea5761.c, tuner-core.c,tuner-simple.c, - tvaudio.c,tvmixer.c,video-buf-dvb.c: - - All these changes are to include compat.h to include - linux/version.h when V4L is compiled standalone. - - * doc/README.saa7134, doc/not-in-cx2388x-datasheet.txt: - - Removed trailing spaces. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-15 20:31 mchehab - * .bp/2.6/dvb-cx22702,.bp/2.6/dvb-mt352, .bp/2.6/dvb-or51132, - dvb-pll.c,dvb-pll.h,lgdt3302.c,lgdt3302.h,lgdt3302_priv.h, - mt352.c,mt352.h,mt352_priv.h,or51132.c,or51132.h,tda1004x.c, - tda1004x.h: - - DVB stuff. Removed from V4L tree. DVB support is only after - 2.6.11 (Make.config). Kernel does provide interfaces. - - * .buildpatch: - - Includes all V4L stuff. - - * compat.h: - - Fixed a small bug when compiling with newer linux/version.h. - - * Makefile: - - Modified to work without DVB code. - - * scripts/prepare-Changelog.pl: - - New script to help adding a new log file. - - To use, it is needed some env vars like these: - export CHANGE_LOG_NAME="My Full Name" - export CHANGE_LOG_EMAIL_ADDRESS="my_addr@my_provider.com" - export CHANGE_LOG_LOGIN="my_login" - You can include it at .bashrc, .profile or .bash_profile - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-15 20:08 mchehab - * bttv-driver.c, msp3400.c, tda9887.c, tuner-core.c: - - driver.suspend API modified at 2.6.13-rc3-mm1. - - Warnings removed when compiling against 2.6.13-rc3-mm1. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-15 20:04 mchehab - * cx88-dvb.c: - - Fix corrected. - - Signed-off-by: Patrick Boettcher <patrick.boettcher@desy.de> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-15 12:35 mchehab - * cx88-dvb.c: - - The output_mode needs to be set for the Hauppauge Nova-T DVB-T - (cx88-dvb.c) for versions after 2.6.12. - - Signed-off-by: Patrick Boettcher <patrick.boettcher@desy.de> - Signed-off-by: Andrew Morton <akpm@osdl.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-14 03:02 mchehab - * tea5767.c: - - Newer tea autodetection code is not stable. Restaured old - behavior. - * tuner-core.c: - - new option no_autodetect to disable tuner autodetection codes. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-14 01:20 mkrufky - * lgdt3302.c: - - fix QAM lock bug. Previously, it was necessary to first - scan in VSB before attempting to get a QAM lock. - - Signed-off-by: Mac Michaels <wmichaels1@earthlink.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-13 17:11 mchehab - * bttvp.h,cx88.h,dpl3518.c,ir-common.c, ir-common.h, - saa7134.h, tveeprom.c, v4l1-compat.c, v4l2-common.c: - - linux/version.h removed. - - incremented versions for CX88, BTTV and SAA7134. - - * compat.h: - - Included linux/version.h. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-13 13:22 mchehab - * tea5761.c: - - New tea chip added. Still needs testing and integration. - Doesn't hurt CVS freeze, since it is not being compiled. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-13 10:06 mchehab - * tea5767.c: - - Fixed newer tea autodetection code. - - * tuner-core.c: - - unimplemented IOCTL msg now is clearer for developers. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-13 10:06 mchehab - * tea5767.c: - - Improved tea autodetection to avoid troubles with other tuners. - - Eliminated some precision small troubles. - - Some debug messages fixed. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-13 09:06 mchehab - * cx88-video.c: - - After changing channels, reconfigure audio parameters. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-12 15:39 mkrufky - * cx88-dvb.c, saa7134-dvb.c: - - Always include dvb frontend code for hybrid cx88 and saa7134 boards. - A previous change breaks hybrid v4l/dvb boards in 2.6.13-rc2-mm2. - This fixes the bug. We will have to figure out - something better in the future. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-12 04:06 mkrufky - * lgdt3302.c: - Older gcc's can't do that. - - Cc: Mac Michaels <wmichaels1@earthlink.net> - Cc: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Andrew Morton <akpm@osdl.org> - -2005-07-11 23:56 mkrufky - * lgdt3302.c: - - Initialize all non mutually exclusive variables - without regard to the mode selected. - - Do a software reset each time the parameters are - set, regardless of whether anything changes. - This may allow an application to recover from a - hung condition. - - Improved error reporting according to a comment - seen about the lgdt3303 code. - - Signed-off-by: Mac Michaels <wmichaels1@earthlink.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-08 20:17 mchehab - * tda8290.c: - - Reverted tda8290 patch to correct radio behavior. - - * saa7134-boards.c: - - spaces used for indent replaced by tabs. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-08 13:20 mchehab - * tuner-core.c: - -removed old comment. - - * .bp/2.6/saa7134-update: - - Commented more stuff already at dvb-saa7134 - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-07 23:32 mchehab - * .bp/2.6/saa7134-update: - - Commented some stuff already at dvb-saa7134 - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-07 19:20 mchehab - * tuner-core.c: - - Comment changed to express better when attach_inform is running - - set_freq removed from set_mode. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-07 16:42 mchehab - * ir-kbd-i2c.c: - - Some changes to comply with CodingStyle: - // comments converted to /* */ - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-07 14:42 mchehab - * ir-common.c, cx88-input.c: - - Some changes to comply with CodingStyle: - Obvious stuff eliminated. - // comments converted to /* */ - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-07 14:15 mchehab - * cx88-core.c, cx88-mpeg.c, cx88-video.c, cx88.h: - - - Some debug structs moved to their own .c file and converted to static - - some // comments converted to #if 0 - - * cx88-mpeg.c: - - Small cleanup for thinks like 0<<14 - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-07 14:00 mchehab - - * scripts/buildpatch: - - - Added code to eliminate #if 0 and #if 1 when submiting pathes - to new kernel. - - * cx88-video.c,cx88-tvaudio.c: - - - Nexted #if 0 commented (it breaks buildpatch) - - * cx88-reg.h: - - - Changed comment location to remove it from kernel patch - - * cx88-input.c: - - - "Linux indented" using Lindent. - - Useless comments removed. - - // coments changed to /* */ - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-07 13:08 mchehab - * scripts/buildpatch: - - - Added code to eliminate BTTV check version when submiting pathes - to new kernel. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-07 03:38 mkrufky - * lgdt3302.c: - - Remove #include <linux/version.h>. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-07 03:01 mchehab - * tuner-core.c,tea5767.c: - - - T_STANDBY now is tuner.mode instead of tuner.mode_mask. - This way, mode_mask is changed only when calling set_type. - - Signed-Off-By: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-07 02:41 mchehab - * tuner-core.c: - - - Fix setting of VIDEO_TUNER_LOW in v4l1 mode with radio. - - Signed-Off-By: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-06 21:44 mkrufky - * lgdt3302.c: - - Fix bug in lgdt3302_read_status to return correct - FE_HAS_SIGNAL and FS_HAS_CARRIER status. - - * msp3400.c, saa7134-cards.c, saa7134-i2c.c: - * tuner-simple.c, video-buf-dvb.c: - - Remove trailing whitespace. - - Signed-off-by: Mac Michaels <wmichaels1@earthlink.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-07 01:44 nshmyrev - * tuner-simple.c: - - Use 50 kHz step when tunning radio for most tuners. - - Signed-Off-By: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2006-07-06 19:58 nshmyrev - * msp3400.c video-buf-dvb.c: - - Fix build with 2.6.13. - - * cx22702.c: - - Remove unused field id that cause build problems. - - Signed-Off-By: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-07-06 09:37 mchehab - * tuner-core.c: - - Cleanup patch at tuner-core.c reverted. Radio is working again. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-06 02:01 mkrufky - * lgdt3302.c: - - - Removed #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,10). - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-06 03:33 mchehab - * tuner-core.c, tea5767.c: - - Corrected some bugs at radio, but radio still broken. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-05 15:32 mkrufky - * cx88-mpeg.c, doc/not-in-cx2388x-datasheet.txt: - - - Correct sync byte for MPEG-2 transport stream packets. - All DVB compliant frontends output packets with this start code. - Thanks to Johannes Stezenbach and Mac Michaels. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-05 21:36 nshmyrev - * bttv-driver.c, saa7134-cards.c, tuner-core.c, tea5767.c: - * tuner-simple.c, saa7134-core.c, cx88-core.c: - - Rename tuner structures fields. Move MD detection hack to - saa7134-cards.c - -2005-07-04 18:23 nshmyrev - * tuner-core.c: - - - Fix setting of VIDEO_TUNER_LOW in v4l1 mode with radio. - -2005-07-04 15:23 mkrufky - * cx88-cards.c, cx88-dvb.c, cx88-mpeg.c: - * dvb-pll.c, dvb-pll.h: - - - Add DVB support for DViCO FusionHDTV3 Gold-T. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-04 17:02 mchehab - * saa7134-i2c.c: - - specifying tuner type by parameter was not working. fixed. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-04 11:47 mkrufky - * Makefile, saa7134-dvb.c: - - Let Kconfig decide whether to include - frontend-specific code in saa7134-dvb. - - * cx88-video.c: - - added missing contrast offset value, set to 0. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-03 21:11 mkrufky - * Makefile, cx88-dvb.c: - - Let Kconfig decide whether to include - frontend-specific code in cx88-dvb. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-03 18:30 mchehab - * tuner-core.c: - - Added some comments about I2C working mode. - - Frequency initialized for radio and TV. - - * cx88-video: - - It calls VIDIOC_G_FREQUENCY to get tuner freq from tuner. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-03 13:40 mchehab - * bttv-i2c.c, cx88-i2c.c, saa7134-i2c.c: - - I2C cleanups. Now, all drivers uses the same basic structure. - - * cx88-video.c: - - Duplicated code commented. Should be removed soon. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-03 00:55 mchehab - * tuner-core.c: - - - Reintroduced check for is_stereo pointer eliminated on previous - cleanup. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-03 04:19 nshmyrev - * Make.config, tuner-core.c, tuner.h: - - - Finish previous cleanups - -2005-07-02 19:20 nshmyrev - - * bttv-cards.c, bttv-i2c.c, cx88-i2c.c, cx88-video.c: - * saa7134-cards.c, saa7134-core.c, saa7134-i2c.c: - * tuner-core.c, tuner.h: - - Rename v4l2_tuner field in tun_addr structure. Cleanup - tuner private calls. - - Signed-Off-By: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-07-02 19:17 nshmyrev - * Make.config: - - - Fix check for newer kernel to compile dvb modules. - - * tea5767.c, tuner-core.c, tuner.h, tuner-simple.c, scripts/cardlist: - - - Cleanup code a bit - - * msp3400-old.c, vbi, tda9887.h: - - - Remove unused files - - Signed-Off-By: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-06-01 21:38 mchehab - * tuner-core.c: - - - It looks that I2C trouble was fixed. Still requires futher - analysis. - - Signed-off-by: Chris Pitchford <bttv@intrepid.cx> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-01 20:40 mchehab - * tuner-core.c: - - - it is printk, not dprintk! Fixed. - - new debug info when tuner is specified as tea5767 but - autodetection doesn't recognize. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-01 18:37 mchehab - * tuner-core.c: - - - Added a code to avoid I2C early announce. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-01 12:09 mchehab - * tuner-core.c: - - - new debug info; - - reincluded type=t->type when I2C is not yet registred. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-01 12:09 mchehab - * tuner-core.c: - - - Fixed a race condition at I2C implementation. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-07-01 08:02 mkrufky - * cx88-cards.c, cx88-dvb.c, cx88.h: - * doc/CARDLIST.cx88: - - - Add support for TerraTec Cinergy 1400 DVB-T. - - Signed-off-by: Uli Luckas <luckas@musoft.de> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-07-01 12:12 nshmyrev - * tuner-core.c: - - - Add option to resolve secam norm in tuner. - - Signed-Off-By: Nickolay V. Shmyrev <nshmyrev@yandex.ru> - -2005-07-01 12:09 nshmyrev - * saa7134-cards.c, saa7134-core.c, saa7134.h: - - - Remove irq2_mask field from saa7134_dev structure. - Collect all the bits needed in saa7134_hwinit2() instead. - - Signed-Off-By: Michael Tokarev <mjt@tls.msk.ru> - -2005-06-29 17:18 mchehab - * tuner-core.c: - - - Included two new debug msgs for showing I2C set_type calls when - tuner_debug is on. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-29 17:18 mchehab - * tuner-core.c: - - - Removed debug info. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-29 16:37 mchehab - - * tuner-core.c, tuner.h, tea5767.c: - - Fixed bugs at TEA5767 autodetection code - - New debug code for identifying calls to set_type before I2C ok. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-29 09:37 mchehab - * tuner-core.c: - - Idented according with Linux standards - - check_mode debug msg fixed - - out of range debug messages fixed - - standby mode support implemented - - new macro: set_type disables other tuner - when changing mode. - - * tea5767.c: - - Idented according with Linux standards - - some debug messages only with tuner_debug=1 - - standby mode implemented - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-29 02:42 mchehab - * tuner-core.c: - - Corrected trouble when changing to radio mode - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - Signed-off-by: Nickolay V Shmyrev <nshmyrev@yandex.ru> - -2005-06-28 16:15 mchehab - * cx88-video.c: - - Changed hue offset to 128 to correct its behavior. - Now, 50% Hue means no offset, just like bt878 stuff. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-28 19:35 mkrufky - * cx88-core.c, cx88-dvb.c, cx88-input.c: - * lgdt3302.c, lgdt3302_priv.h, or51132.c: - * saa7134-cards.c, saa7134-core.c: - * saa7134-dvb.c, saa7134-i2c.c, saa7134-oss.c: - * saa7134-tvaudio.c, saa7134-video.c: - * tda8290.c, tea5767.c, tuner-simple.c: - - - Clean up ALL whitespace using - scripts/strip-trailing-whitespaces.sh - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-28 09:04 mkrufky - * lgdt3302.c: - - Revert previous changes: - The code was better off in it's original form. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-28 09:04 mkrufky - * lgdt3302.c: - - Changed some code in preparation for merge into linux-tv cvs. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-28 08:32 mkrufky - * lgdt3302.c, lgdt3302.h: - - more whitespace cleanups. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-28 00:32 mkrufky - * cx88-cards.c: - - Fixed tab/spacing problems. - - * lgdt3302.c: - - Updated comments. - - * tuner-simple.c: - - Added newline for code style consistency. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-28 03:18 mchehab - * cx88-i2c.c, cx88-video.c, saa7134-i2c.c, tuner-core.c, tuner.h: - - Improved support for multi tuners on multi boards. - - *tuner-core.c: - - Pal M and PAL N added to tuner_fixup_std - - * tuner-simple.c: - - Eliminated old tea code from tuner-simple. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-27 18:58 mchehab - * .bp/2.6/dvb-cx22702: - - cx22702.c,cx22702.h patch generation commented, since DVB project has updated it - * .bp/2.6/dvb-pll: - - dvb-pll.c,dvb-pll.h patch generation commented, since DVB project has updated it - - - Obs.: tda1004x.h and tda1004x.c are also from DVB project. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-26 18:01 nshmyrev - * tda8290.c: - - - Fix setting frequency on tda8290. - Thanks to Fabien PERROT <perrot1983@yahoo.fr> - -2005-06-25 23:42 nshmyrev - * saa7134-cards.c: - - - When switching external mux on mute, switch internal mux to TV. - Thanks to Konrad Rzepecki <hannibal@megapolis.pl> - -2005-06-23 12:24 mkrufky - * scripts/buildpatch: - - - Produce diffstat before patch. - - diffstat & patch to STDOUT. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-22 23:00 nshmyrev - * saa7134-cards.c, saa7134-input.c: - - - recover the original PAL tuner on Compro VideoMate Gold+ Pal - - add remote support for Compro VideoMate gold+ II, Pal saa7134 chip - - Signed-off-by: Hermann Pitton <hermann.pitton@onlinehome.de> - -2005-06-22 23:20 mchehab - * scripts/cardlist: - - Script updated to strip tail spaces - - Correclty generates a tuner number for tea chip - - * doc/CARDLIST.cx88, doc/CARDLIST.saa7134, doc/CARDLIST.tuner: - - - Card definitions updated. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-22 22:47 mchehab - * bttv-cards.c, cx88-core.c, cx88.h, v4l1-compat.c,doc/CARDLIST.bttv, - doc/CARDLIST.saa7134, doc/Cards: - - tail spaces removed. - - * cx88-core.c, cx88.h: - - cx88_pci_irqs changed to static - - * doc/V4L1_API.html: - - Now informs that it is obsolete. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-22 16:00 nshmyrev - * bttv-driver.h: - - - use DMA_32BIT_MASK. Thanks to domen@coderock.org. - - * tuner.h: - - - Remove unneeded set_tuner from tuner structure. - - * saa7134-cards.c, saa7134-tvaudio.c: - - patch to switch external mux on mute on some cards. - - * tuner-simple: - - - unify tuner list - -2005-06-22 22:27 mchehab - * Makefile: - - Less verbose - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-22 15:50 mchehab - * .bp/2.6/v4l-driver-doc, doc/API.html: - - API.html added, pointing to V4L api at linuxtv. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-21 22:50 hhackmann - * tda1004x.c - - added this file (copy from linuxtv DVB project) - to make DVB-T for saa7134 work. - - * saa7134-dvb.c - - don't turn off the xtal output of tda8274/75 in sleep mode. - This might crash the channel decoder. - - Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t-online.de> - -2005-06-21 15:45 mchehab - * Makefile: - - included a make rmmodules for removing modules from memory. - it is not perfect, but helps debuging :-) - - * .bp/2.6/i2c-tuner: - - tea filename corrected. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-21 11:58 mkrufky - * tuner-simple.c: - - forgot to remove TUNER_TENA_9533_B in one location, - fixed now. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-21 15:45 mchehab - *tuner-core.c: - - some tuner_info msgs will be generated only if insmod opt - tuner_debug enabled. - - *tea5767.c: - - tuner_info msgs will be generated only if insmod tuner option - tuner_debug enabled. - - some cleanups for better reading. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-21 10:51 mkrufky - * tuner-simple.c, tuner.h, saa7134-cards.c: - * CARDLIST.tuner: - - Removed tuner#64 and consolidated into tuner#61, - Appropriate comments added. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-21 07:32 mkrufky - * tuner-simple.c: - - Fix UHF switch for tuner=61 & tuner=64. - - Signed-off-by: Hermann Pitton <hermann.pitton@onlinehome.de> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-21 02:04 mkrufky - * cx88-dvb.c: - - Fixed missing line in cx88-dvb.c - - Thanks to Didier Caillaud <mailing.cld@free.fr> - -2005-06-20 23:00 mkrufky - * saa7134-cards.c, saa7134-input.c, saa7134.h: - * tuner-simple.c, tuner.h: - * doc/CARDLIST.saa7134, doc/CARDLIST.tuner: - - - Add new card entry: Kworld Xpert TV PVR7134 - - Add new tuner entry: Tena TNF9533-B/DF - Thanks to Hannibal <hannibal@megapolis.pl> - - - Replace // with /* */ - - Fix tab/spacing problems - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-21 02:40 mchehab - *tuner-core.c: - - VIDIOCSTUNER removed. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-20 18:04 mkrufky - * saa7134-core.c: - - Fix kernel compile error with CONFIG_MODULES=n - - Signed-off-by: Adrian Bunk <bunk@stusta.de> - -2005-06-20 14:14 mkrufky - * lgdt3302.c: - - Change lgdt3302 driver to return raw data for SNR. - - Signed-off-by: Mac Michaels <wmichaels1@earthlink.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-20 15:25 mchehab - *tuner-core.c: - - v4l2_tuner has three fields for audio mode: - capability (bitmask, says what the hardware is able to do). - rxsubchans (bitmask, which channels are available). - audmode (enum, current mode). - For radio seeing a stereo signal but sending mono the driver - can simply set this: - rxsubchans = V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO; - audmode = V4L2_TUNER_MODE_MONO; - - VIDIOCSTUNER should not allow turning stereo/mono. Code commented. - It will be removed soon. - - Signed-off-by: Gerd Knorr <kraxel@bytesex.org> - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-20 00:49 mkrufky - * lgdt3302.c: - - fixed FEC error status - - Signed-off-by: Mac Michaels <wmichaels1@earthlink.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-19 22:55 mkrufky - * cx88-cards.c, cx88-dvb.c, cx88-mpeg.c: - * cx88-video.c, cx88.h, tuner.h: - * doc/CARDLIST.cx88: - - - Fix DViCO Board names as per email from - DViCO Systems Software Engineer Jeff Lee: - "DTT7611 model is 3Gold-T ... Temic 4042 is the 3Gold-Q model." - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-19 23:53 mchehab - * tea5767.c, tuner-core.c: - - - tea5767 autodetection code included. - It uses the same approach as DScaler code. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-19 14:41 mchehab - * cx88-video.c, tea5767.c, tuner-core.c: - - - Changing radio mode stereo/mono for tea5767 working. - - is not clear at V4L1 API if VIDIOCSTUNER can change to mono. - support for changing implemented anyway to allow radio st/mono - switch. - - Issue to solve: tea indicates stereo even when switched to mono. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-19 14:41 mchehab - * tuner-core.c: - - - VIDIOCSTUNER ioctl implemented. - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-19 14:41 mchehab - * cx88-video.c, tea5767.c, tuner-core.c, tuner.h: - - - Added initial support for changing radio mode stereo/mono for tea5767 - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-19 14:41 mchehab - * tuner.h, tuner-core.c: - - - Implemented tuner-core support for VIDIO_S_TUNER - - It can be used by changing mono/stereo mode - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-19 13:45 mchehab - * Makefile: - - - make install now remove old installs at /lib/modules/<kern ver>/v4l - - make v4l_install now remove kernel modules - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-19 11:43 nshmyrev - * saa7134-cards.c, saa7134.h: - - - Add new card entry for Compro VideoMate TV Gold+II. - Thanks to Elshin Roman <roxmail@list.ru> - -2005-06-18 19:40 mchehab - * Makefile: - - - make install now installs file over old 2.6 files - - make v4l_install added for old behavior - - Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> - -2005-06-18 14:18 mkrufky - * cx88-cards.c: - - Remove CABLE type setting from DViCO FusionHDTV3 Gold-T. - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-18 09:46 nshmyrev - * dpl3518.c, msp3400-old.c, msp3400.c, saa6752hs.c, tda9887.c: - * tuner-core.c, tvaudio.c, tveeprom.c: - - - Up requirement on kernel version to remove normal_i2c_range. - Actually it gives nothing, only remove unused static structure - so it's used as a reminder. - - - Fix compilation. - -2005-06-18 09:06 nshmyrev - * tuner-core.c, tuner-simple.c, tda8290: - - - Move PHILIPS_FMD initialization code to set_type function, - - Fix dumb error in tda8290 tunning. - -2005-06-17 23:54 mkrufky - * video-buf-dvb.c, video-buf-dvb.h: - - Allow backwards compatability with kernels before 2.6.12 - - * tuner.h - - ad $id - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-18 00:00 nshmyrev - * Make.config, Makefile, cx88-core.c, cx88-video.c: - * cx88.h, msp3400.c, saa6752hs.c: - * tda9887.c, tuner-core.c, tvaudio.c, tveeprom.c: - - - Remove unneeded config options. Now I2C_CLIENT_MULTI - and I2C_NORMAL_RANGE is checked on the fly. - -2005-06-17 23:54 nshmyrev - * videodev2.h: - - - Add Philips Webcam format. - Request from Luc Saillard <luc@saillard.org>. - -2005-06-17 23:40 nshmyrev - * saa7134-video.c: - - - Fix nicam detection on saa7134 cards. - -2005-06-17 14:44 mkrufky - * Make.config: - - Allow DVB to compile if kernel is later than 2.6.10 - - * Makefile, cx88-cards.c, cx88-dvb.c: - * cx88-i2c.c, cx88-mpeg.c, dvb-pll.c: - * dvb-pll.h, lgdt3302.c, lgdt3302.h, lgdt3302_priv.h: - - - added support for LGDT3302 demod for cx88 cards: - DViCO FusionHDTV 3 Gold - Signed-off-by: Mac Michaels <wmichaels1@earthlink.net> - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - - -2005-06-17 16:50 mchehab - * tda1004x.h: - - - added to allow compiling saa7134-dvb.c - -2005-06-17 18:51 nshmyrev - * saa7134-cards.c: - - - Fix detection of ADS PCI saa713x. - -2005-06-17 12:25 mchehab - * saa6752hs.c: - - Changed struct to be compatible with older gcc's - Thanks to Andrew Morton <akpm@osdl.org> - -2005-06-17 00:00 mchehab - * cx88-video.c: - - - Fixes a bug on VIDEO_G_FREQUENCY that avoids it to report - frequency. - -2005-06-17 00:00 nshmyrev - * bttv-driver.c, bttvp.h: - - - New bttv module params: - - - uv_ratio : allow a ratio of saturation between u and v. If you have a ratio - of 40 and a saturation of 100, usat will be 80 and vstat 120. Useful to correct - a bad color balance. - - full_luma_range : provide a better contrast in using the full range 0-253 - of values instead of 16-253. - - coring : to have a better black level. - - Thanks to Sylvain Meyer <sylvain.meyer@worldonline.fr> - -2005-06-16 21:13 mchehab - * cx88-video.c, saa7134-video.c, bttv-driver.c: - - - radio range is now defined on tuner-core.c. Cleaning up. - -2005-06-15 11:58 nshmyrev - * mt20xx.c, tda9820.c, tuner-core.c, tuner-simple.c: - - - Make all radio tuners use CAP_LOW by default. - -2005-06-15 13:50 mkrufky - * Make.config: - - - Undo unintentional change made in previous commit - -2005-06-15 13:10 mkrufky - * tuner.h, tuner-simple.c: - - - Move TUNER_PHILIPS_FMD1216ME_MK3 to tuner #63 to correct duplicate tuner #58 problem - - * saa7134-cards.c: - - - Remove duplicate entry for AVERMEDIA_307 - - * saa7134-video.c: - - - set video_v_start also for PAL_60 to line 23 and only line 23. - Thanks to Hermann Pitton <hermann.pitton@onlinehome.de> - - Signed-off-by: Michael Krufky <mkrufky@m1k.net> - -2005-06-15 02:14 mchehab - * Make.config, Makefile, tuner-core.c: - - - CONFIG_TUNER_MULTI_I2C dropped from tuner-core.c and included on Make.config - - included CONFIG_USE_I2C_RANGE for kernels that requires normal_i2c_range struct - (only kernels after 2.6.12-rc6-mm1 doesn't require). - - * bt832.c, msp3400.c, saa6752hs.c, tda7432.c, tda9875.c, tda9887.c, tuner-core.c,tvaudio.c, - tveeprom.c, - - - I2C range detection corrected to new behavior of 2.6.12-rc6-mm1 - - * cx88-video.c, tea5767, tuner-core.c: - - - V4L2_TUNER_CAP_LOW implemented according with V4L2 API for Radio. - - tea5767 debug improved. - - * .bp/2.6/v4l-driver-doc - - - typo corrected. - -2005-06-14 04:08 hackmann - * saa7134-cards.c saa7134.h: - - added entry for Philips TOUGH Reference design - - added code to turn the fan of the Lifeview and Typhoon cardbus nodules on - - corrected Lifeview Cardbus entries - - corrected Medion MD7134 entries - - * saa7134-core.c: - - distinguish the different variants of the Medion MD7134 modules via eeprom - - * saa7134-dvb.c: - - DVB-T support for MD7134 cardbus and the PCI variants - - initial DVB-T support for Lifeview Flydvb-t duo - - DVB-T support for Philips TOUGH reference design - - * saa7134-ts.c: - - fixed minor bug in DMA IRQ handler - - * saa7134-video.c: - - turn off planar mode at video release (would break DVB) - - put tda8290 and tda8275 to sleep at video release to save power - - special FM stereo configuration for FMD1216 tuner - - * tda8290.c: - - initialize tuner to sleep mode to save power - - * tda9887.c audiochip.h: - - special FM stereo configuration for FMD1216 tuner via i2c client call - - * tuner.h tuner-core.c tuner-simple.c: - - support for Philips FMD12ME hybrid tuner - - allow to initialize with another tuner - - * video-buf-dvb.c video-buf-dvb.h: - - adapt to dvb core change in 2.6.12-rc4 - -2005-06-13 04:08 hackmann - * saa7134-tvaudio.c saa7134-ossc: - - corrected off by 1 error in DMA memory allocation - - corrected oss sound routing for saa7134 and saa7133 - -2005-06-13 19:57 nshmyrev - * bttvp.h: - - - Fix gcc 4.0 compilation - - * cx88-input.c: - - - Add remote IR support for MSI TV@nywhere. Thanks to - Jorik Jonker <jorik@dnd.utwente.nl> - -2005-06-13 13:00 nshmyrev - * saa7134-cards.c, caa7134.h, doc/README.saa7134: - - Mark all 7135 cards as 7133. Thanks to - hermann pitton <hermann.pitton@onlinehome.de> - -2005-06-13 12:38 nshmyrev - * saa7134-cards.c, saa7134-dvb.c, saa7134.h: - - - Add new Typhoon DVB-T Cardbus. Thanks to - Juergen Orschiedt <jorschiedt@web.de> - - cx88-core.c: - - - Fix compilation with gcc4.0 - -2005-06-13 03:24 nshmyrev - * cx88-cards.c. cx88-input.c: - - - Add support for ADS Tech Instant TV DVB-T PCI. Thanks to - Benoît Laniel <benoit.laniel@gmail.com>. - -2005-06-13 03:08 nshmyrev - * saa7134-card.c: - - - Updated entry for Avermedia Cardbus E500. Thanks to - Kees Blom <Kees.Blom@cwi.nl>. - -2005-06-12 04:08 mchehab - * audiochip.h, compat.h, cx22702.h, cx88-core.c, cx88-dvb.c, - cx88-i2c.c, cx88-vbi.c, cx88-video.c, dpl3518.c, dpl3518.h, - i2c-compat.h, id.h, msp3400.h, or51132.c, or51132.h, plx9054.h, - rds-saa6588.c, saa7134-dvb.c, tda7432.c, tda9875.c, tvaudio.c, - tveeprom.h, tvmixer.c, v4l1-compat.c, video-buf-dvb.h: - - - Minor changes to synchronize with -mm series; - - - PAL-60 code maintained for SAA7134. However, -mm has different - values; - - - Now, every .c or .h file has cvs field ID. - -2005-06-12 01:35 mchehab - * tuner-core.c: - - - Solved a problem when compiling with some versions of gcc - - - Solved a problem compiling without CONFIG_TUNER_MULTI_I2C - - * cx88-i2c.c, saa7134-i2c.c: - - - Make it compatible with kernel 2.6.12-rc6-mm1 - -2005-06-11 12:49 mchehab - * README.patches: - - - Now reflecting wiki pages. Thanks to David Liontooth for - helping with wiki page. - -2005-06-10 23:49 nshmyrev - * tuner-simple.c, tda9887.c: - - - Require audio gain in stereo mode to reduce noise, tuner_stereo - now differently determine stereo presence for different tuners. - -2005-06-10 17:15 mchehab - * bttv-cards.c, bttv-driver.c, bttv-i2c.c: - - - Syncrhronized with linux-2.6.12-rc6-mm1. - - Should compile cleanly with linux-2.6.11 also. - - * Makefile: - - - make snapshot now puts also ChangeLog-date at snapshot directory. - -2005-06-10 10:52 mchehab - * tuner-core.c: - - - Improved debug for radio/TV tuner calls. - - Corrected set radio/TV mode calls to change status go to both tuners. - - Improved V4L2_TUNER_CAP_LOW support (tv_range hack) - - * tea5767.c: - - - Included a new debug message. - - * cx88-video.c: - - - Enabled V4L2_TUNER_CAP_LOW to radio. - -2005-06-09 11:47 mchehab - * tuner_core.c, cx88-video.c: - - - Add initial support for V4L2_TUNER_CAP_LOW. - - set_type call at set_addr fixed. - -2005-06-08 14:00 mchehab - * tuner-core.c - - - Add check code before using is_stereo. - -2005-06-08 11:41 mchehab - * .bp/2.6/i2c-tuner,.bp/2.6/v4l-driver-doc: - - - patch files for kernel 2.6 updated to reflect current changes. - - * .buildpatch: - - - included a default buildpatch for generating patches to 2.6 - with all v4l code. - -2005-06-08 01:25 mchehab - - * cx88-cards.c, cx88-core.c, cx88-i2c.c, cx88-video.c, cx88.h, tea5767.c, tuner-core.c, - tuner-simple.c, tuner.h: - - - Improved radio tuner support. - - There is a new option to cx88 radio=xxx,xxx,xxx for radio adapters; - - cx88-boards now specifies radio_type, tuner_addr and radio_addr - - ADDR_UNSET macro means find default radio/video tuner - -2005-06-07 22:55 nshmyrev - * v4l1-compat, tuner-core.c, tuner-simple.c, tda9887.c: - - - Make stereo/mono settings available from applications. - -2005-06-07 21:45 nshmyrev - * saa7134-cards.c, saa7134.h, saa7134-input.c: - - - Add new cards - ADS Instant TV PCI (PTV-350) saa713x. - Kworld/Tevion V-Stream Xpert TV-PVR 713x - - Thanks to Fabrice Aeschbacher <fabrice.aeschbacher@laposte.net> and - hermann pitton <hermann.pitton@onlinehome.de>. - - - Fix for FlyView FM Mini - -2005-06-06 02:40 mchehab - * tea5767.c: - - Frequency select now is correct for TEA5767_LOW_LO_32768 on - PV Ultra Pro - - Frequency is multiple of 62,5 Khz instead of 50Khz. This patch - provides a table to increment at 50Khz - - there are an odd table and an even table - -2005-06-06 05:05 mchehab - * doc/V4L2_API.html: - - Included V4L2 API from http://v4l2spec.bytesex.org - - *doc/V4L1_API.html - - Include Obsoleted V4L API from doc on kernel-2.6.12-rc5-mm2 - -2005-06-06 04:52 mchehab - * tuner-core.c: - - temporary debug log removed. - -2005-06-06 04:52 mchehab - * tea5767.c: - - Implemented status dump information for debug - - Signal strengh indication corrected - - Mono/Stereo detection corrected - - * tuner-core.c: - - Implemented radio stereo indication according w/ V4L and V4L2 API - -2005-06-05 17:32 mchehab - * tea5767.c, Makefile, tuner-core.c, tuner-simple.c, tuner.h: - - Support for radio chip tea5767hn included. - - It is used on several TV+FM cards, always at addr I2C 0xC0. - -2005-06-05 06:52 mchehab - * cx88-tvaudio.c, cx88.h: - - - deemphasis code implemented, but not used yet. Has to be defined - an API for that. - -2005-06-03 18:56 mchehab - * cx88-cards.c: - - PV Ultra Pro PCI ID was included by accident. Removed. - - * tuner-simple.c: - - Ymec chipset now reflects Philips, instead of Temic. - -2005-06-03 14:26 mchehab - - * cx88-cards.c: - - - changed tuner number by it's name as defined on tuner.h. - - * scripts/make_kern_diff.sh - - - now it also makes diff for include files. - -2005-06-03 13:36 mchehab - * cx88-blackbird.c: - - - Blackbird firmware API cleanup, symbolic constants for param values. - - improved readability and comprehensibility for api calls. - - * cx88-cards.c: - - - PVR2000 & MEC gpio fixes. - - * cx88-tvaudio.c: - - - enable sound input from external adc - - * cx88-video.c: - - initialize the hue, contrast and brightness controls to default values - - * cx88-mpeg.c: - - s/cx_write/cx_set for MO_TS_INTMSK, MO_DEV_CNTRL2, MO_TS_DMACNTRL - - Thanks to Catalin Climov <catalin@climov.com> - -2005-06-03 12:33 mchehab - * cx88-cards.c, cx88.h, CARDLIST.cx88, CARDLIST.tuner, tuner-simple.c: - - - DViCO FusionHDTV3 Gold-Q renamed to Gold-T - - adds (ATSC/NTSC) next to the Thomson DDT 7611 name. - Thanks to Michael Krufky <mkrufky@m1k.net>. - - -2005-06-01 20:21 mchehab - * cx88-cards.c: - - - PV Ultra Pro PCI ID was wrong. Removed. - -2005-06-01 19:54 nshmyrev - * scripts/hwdata.pl: - - - script for collecting pci data from sources in Linux PCI ID's format - -2005-06-01 04:31 mchehab - * cx88-cards.c: - - - cosmetic changes to reflect pal_m patch applied to -mm series. - -2005-06-01 03:32 mchehab - * scripts/make_kern_diff.sh: - - - new script to check differences between kernel CVS and kernel 2.6 - -2005-05-30 16:43 mchehab - * cx88-cards.c: - - - changed tuner number to its corresponding name for PV Ultra Pro. - -2005-05-30 16:33 mchehab - * cx88-cards.c: - - - Included PCI ID 14f1:8800 to CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO - -2005-05-30 02:42 mchehab - * tuner-core.c, tuner-simple.c, tuner.h: - - - tuner-core changed to support multiple I2C devices - - has to define CONFIG_TUNER_MULTI_I2C to allow new behavor - - By default, it uses first I2C device for FM and TV - - New client control TUNER_SET_ADDR changes I2C addr for FM or TV - - TVision 5533 MF now uses I2C on 0xC2 for TV and on 0xC0 for radio - - TVision 5533 MF div now uses only integer arithmetics - - tuner I2C dettach now generates warn log if failed - -2005-05-29 13:38 nshmyrev - - * cx88-cards.c, cx88.h: - - Add support for "DViCO - FusionHDTV 3 Gold-Q". Thanks to - Michael Krufky <mkrufky@m1k.net>. - -2005-05-27 05:45 mchehab - - * tuner-simple.c: - - - Added initial support for Radio tuner for Ymec TVF xxx3 MF - - Buffer values determinated empirically. - - There's a hack for selecting I2C bus for Radio (0xC0>>1) - -2005-05-25 04:00 nshmyrev - - * bttv-cards.c, bttv.h: - - Add support for the Adlink RTV24 capture card. Thanks to Peter - Skipworth <pskipworth@clarityvi.com> - -2005-05-25 02:40 nshmyrev - - * saa7134-vbi.c, saa7134-video.c, saa7134.h: - - saa7134 ntsc vbi fix. Patch from mschimek@nusurf.at which is merged to - kernel -mm tree. - -2005-05-25 02:25 kraxel - - * bttv-i2c.c: Don't try to access the i2c bus if the register wasn't successful. - -2005-05-23 23:57 nshmyrev - - * saa7134-cards.c, saa7134-input.c: Add Behold names to Manli - cards, since they should be identical. Add remote support for - those card. Thanks to Michael Tokarev <mjt@tls.msk.ru>. - -2005-05-23 00:55 nshmyrev - - * cx88-input.c: - - enables the remote control input on the KWorld XPert DVB-T card. - Thanks to cybercide@f2s.com <cybercide@f2s.com> - -2005-05-22 23:50 nshmyrev - - * saa7134-cards.c, saa7134.h, saa7134-input.c: - - Update entries for Lifeview Platinum FM, Avermedia 307 Studio, - Avermedia 307 and Avermedia GO 007 FM - -2005-05-22 23:40 nshmyrev - - * ir-common.c: - - Update hauppage ir codes - -2005-05-22 23:20 nshmyrev - - * tda9887.c, tuner-core.c: - - Fix module_param_string argument order - -2005-05-22 23:20 nshmyrev - - * bttv-i2c.c, compat.h, cx88-dvb.c, saa6752hs.c: - * saa7134-core.c, saa7134-empress.c: - - Merge changes from 2.6.12 kernel. - -2005-05-22 23:06 nshmyrev - - * scripts/cardlist, doc/CARDLIST.bttv, doc/CARDLIST.cx88: - * doc/CARDLIST.tuner, doc/CARDLIST.saa7134: - - Update cardlist script and list of cards - -2005-05-18 01:30 mchehab - * tuner-simple.c, tuner.h: - - - Added support for some Ymec tuners used on Pixelview Cards. - - There are some docs about it on http://www.ymec.com.tw/tuner.htm. - -2005-05-15 19:07 mchehab - * scripts/cardlist, doc/CARDLIST.bttv, doc/CARDLIST.cx88, - doc/CARDLIST.saa7134, doc/CARDLIST.tuner: - - - scripts/cardlist updated to generate doc/CARDLIST.cx88 - - doc/CARDLIST.xxx updated. - -2005-05-15 19:01 mchehab - * cx88-cards.c, cx88.h, cx88-input.c, ir-common.c, ir-common.h, - ir-kbd-gpio.c: - - Added support for Pixelview Ultra Pro Stereo by Manuel Capinha. - -2005-05-15 18:49 mchehab - * cx88-core.c: - - Mauro Chehab(mchehab at brturbo.com.br): Added support for PAL-M FSC. - -2005-04-26 11:01 kraxel - - * README.patches: - - - update README.patches - -2005-04-04 00:14 kraxel - - * README.patches: - - - Final commit: add README.patches - -2005-03-10 11:07 kraxel - - * or51132.c: - - - fix from akpm. - -2005-03-08 09:38 kraxel - - * tuner-simple.c, tuner.h, tveeprom.c: - - - tuner + tveeprom updates from Jarod Wilson. - -2005-03-07 17:10 kraxel - - * cx88-tvaudio.c: - - - cx88: stereo/bilang fix. - -2005-03-07 16:58 kraxel - - * cx88-blackbird.c, cx88-dvb.c, cx88-video.c: - - - minor cleanup. - -2005-03-07 15:18 kraxel - - * cx88-dvb.c, cx88-mpeg.c: - - - fix cx88-dvb. - -2005-03-07 13:01 kraxel - - * cx88-mpeg.c, saa7134-cards.c, saa7134.h, tda8290.c, - scripts/update: - - - add flyvideo duo. - -2005-03-04 10:34 kraxel - - * cx88-mpeg.c: - - - hopefully fix dvb ts setup. - -2005-03-04 10:24 kraxel - - * mt20xx.c, tda8290.c, tuner-simple.c, tveeprom.c: - - - build fixes for older kernels. - -2005-03-04 10:12 kraxel - - * cx88-cards.c, cx88-input.c, cx88.h: - - - cx88: add support for IO-DATA BCTV7E. - -2005-03-03 16:30 kraxel - - * saa6752hs.c, tuner-simple.c: - - - misc small stuff. - -2005-03-02 14:16 kraxel - - * tuner-simple.c: - - - one more tuner fix from Jarod Wilson. - -2005-03-01 11:22 kraxel - - * tuner-simple.c, tuner.h, tvaudio.c, tveeprom.c: - - - tuner update (for pvr) from Jarod Wilson. - -2005-02-24 14:32 kraxel - - * cx88-video.c, video-buf.c: - - - catch pci_map_sg failure. - -2005-02-22 15:06 kraxel - - * bttv-cards.c, bttv.h: - - - Kodicom-4400R support (by William M. Brack). - -2005-02-22 13:28 kraxel - - * cx88-input.c, ir-common.c, ir-common.h, ir-kbd-gpio.c: - - - cx88: ir patches from Robert Reid. - -2005-02-22 10:56 kraxel - - * cx88-cards.c, cx88-tvaudio.c, or51132.c, saa7134-core.c, - tuner-simple.c: - - - misc fixes from various people. - - make or51132.c compile (not work) on 2.6.10. - -2005-02-21 14:57 kraxel - - * Makefile, btcx-risc.c, bttv-cards.c, bttv-driver.c, cx88.h, - saa7134-core.c, doc/Cards, scripts/update: - - - add some bttv debug code. - -2005-02-18 17:18 kraxel - - * doc/: lifeview.txt, liveview.txt: - - - one more rename *sigh*. - -2005-02-18 17:16 kraxel - - * doc/: liveview.txt, saa7134-liveview.txt: - - - rename docfile. - -2005-02-18 14:26 kraxel - - * cx88-dvb.c, cx88-mpeg.c, cx88.h, or51132.c, or51132.h: - - - more HD3000 stuff from Rusty Scott. - -2005-02-18 13:28 kraxel - - * saa7134-cards.c, saa7134-dvb.c: - - - medion 7134 dvb-t support -- first cut, likely doesn't work yet. - -2005-02-17 11:24 kraxel - - * cx88-dvb.c, or51132.c, or51132.h, doc/saa7134-liveview.txt: - - - or51132 update from Rusty Scott, some fixups from me ;) - -2005-02-16 14:11 kraxel - - * cx88-blackbird.c, cx88-cards.c, cx88-input.c, cx88.h, - ir-common.c, ir-common.h: - - - move some bits from cx88-input to ir-common. - - blackbird fixes, add new blackbird card. - -2005-02-16 13:28 kraxel - - * compat.h: - - - make saa7134 build again on older kernels. - -2005-02-16 13:14 kraxel - - * bttv-gpio.c, bttv-i2c.c, bttv.h, bttvp.h: - - - drop unused+obsolete i2c_info code. - - fix use-after-free bug in bttv-gpio. - -2005-02-16 12:18 kraxel - - * bttv-cards.c, cx22702.c: - - - cx22702 fix by Rob Noble. - - bttv: HD2000 fix by Rusty Scott. - -2005-02-15 16:59 kraxel - - * compat.h, cx88-cards.c, cx88-dvb.c, cx88-i2c.c, mt20xx.c, - saa7134-core.c, saa7134-video.c, tda8290.c, tuner-core.c, - tuner-simple.c, tuner.h, scripts/update: - - - merge some patches from mainline. - - tuner kernel message fixups. - - misc. - -2005-02-15 12:29 kraxel - - * .bp/2.6/i2c-tuner: - - - more patch build fixups. - -2005-02-15 11:51 kraxel - - * bttv-driver.c, compat.h, cx88-mpeg.c, cx88-tvaudio.c, - cx88-video.c, .bp/2.6/dvb-cx22702, .bp/2.6/dvb-frontends, - .bp/2.6/dvb-mt352, .bp/2.6/dvb-or51132, .bp/2.6/dvb-pll, - doc/saa7134-liveview.txt: - - - some powermanagement stuff. - - misc fixes. - - fixup patch generation control files. - -2005-02-14 17:30 kraxel - - * cx88-cards.c, cx88-tvaudio.c, cx88-video.c, cx88.h, - saa7134-cards.c, saa7134.h, tda8290.c, tuner-core.c: - - - cx88: more NICAM stuff. - - tuner: tda8290 fix. - -2005-02-10 13:40 kraxel - - * cx88-tvaudio.c, saa7134-cards.c: - - - more nicam / pal-i stuff from Ian Pickworth. - -2005-02-10 12:52 kraxel - - * dvb-pll.c: - - - dtt7610 fix. - -2005-02-10 12:43 kraxel - - * cx88-dvb.c, dvb-pll.c, dvb-pll.h, or51132.c, or51132.h, - tuner-simple.c: - - - a number of pcHDTV cleanups. - -2005-02-10 11:38 kraxel - - * Makefile, cx88-cards.c, cx88-dvb.c, cx88-mpeg.c, msp3400.c, - or51132.c, or51132.h, scripts/update: - - - pcHDTV HD3000 support (by Rusty Scott). - -2005-02-10 10:24 kraxel - - * tda8290.c, tuner-core.c, tuner.h, scripts/update: - - - some tuner fixups. - -2005-02-09 20:27 kraxel - - * cx88-input.c, mt20xx.c, tda8290.c, tuner-core.c, tuner-simple.c, - tuner.h: - - - make the new splitted tuner module build. - -2005-02-09 16:42 kraxel - - * Makefile, mt20xx.c, saa7134-cards.c, saa7134.h, tda8290.c, - tuner-core.c, tuner-simple.c, tuner.c, tuner.h, tveeprom.c: - - - split tuner module into multiple smaller files. - -2005-02-09 14:50 kraxel - - * msp3400.c: - - - attempt #1 to fix "simpler" mode (based on patches by Jan Nikitenko). - -2005-02-09 13:59 kraxel - - * cx88-cards.c, cx88-mpeg.c, cx88.h, tuner.c: - - - add Hauppauge Roslyn support (Kaustubh Bhalerao). - -2005-02-09 09:54 kraxel - - * videodev2.h: - - - fix tyops. - -2005-02-04 13:36 kraxel - - * cx22702.c: - - - minor cleanups. - -2005-02-04 13:32 kraxel - - * cx22702.c: - - - reorder functions in cx22702.c to cut down the diff size. - -2005-02-04 12:42 kraxel - - * cx22702.c, cx22702.h, cx88-cards.c, cx88-dvb.c, cx88.h, - tda9887.c, scripts/update: - - - tda9887: rollback secam fixup for now ... - -2005-02-03 12:50 kraxel - - * saa7134-cards.c: - - - fix saa7134 cinergy mobile (Hans J. Koch). - -2005-02-03 12:45 kraxel - - * tda9887.c: - - - fix tda9887 init order bug. - -2005-02-03 11:48 kraxel - - * saa7134-video.c: - - - saa7134: PAL-60 support by Phil Richards. - -2005-02-03 11:24 kraxel - - * saa7134-empress.c, saa7134-ts.c, saa7134-video.c: - - - saa7134 ts fixes by Eric Lammerts + /me. - -2005-01-31 12:35 kraxel - - * bttv-cards.c, cx88-blackbird.c, cx88-cards.c, cx88-dvb.c, - cx88-input.c, cx88-video.c, dvb-pll.c, mt352.c, tveeprom.c: - - - whitespace cleanups. - -2005-01-31 12:32 kraxel - - * bttv-cards.c, compat.h, saa7134-core.c: - - - add some defines to compat.h to build again on older kernels. - - misc fixes. - -2005-01-24 18:37 kraxel - - * Make.config, bttv-driver.c, bttv.h, bttvp.h, cx88-cards.c, - cx88-tvaudio.c, dvb-pll.c, mt352.c, mt352.h, saa7134-core.c, - saa7134-dvb.c, saa7134-i2c.c, scripts/update: - - - sync with 2.6.11-rc2 & latest dvb cvs. - - misc card-specific tweaks. - -2005-01-20 13:54 kraxel - - * cx88-tvaudio.c, cx88-video.c, cx88.h: - - - cx88: pal-i fixes (Ian Pickworth). - - cx88: nicam-l fixes (Didier Caillaud). - - cx88: misc minor fixes/cleanups. - -2005-01-20 10:54 kraxel - - * mt352.c, .bp/2.6/dvb-frontends, scripts/update: - - - mt352 fixes. - -2005-01-19 14:03 kraxel - - * mt352.c: - - - don't poll mt352 so much. - -2005-01-19 13:01 kraxel - - * cx88-core.c: - - - audio fifo fixup. - -2005-01-17 13:38 kraxel - - * tveeprom.c, scripts/update: - - - fix tveeprom. - -2005-01-14 17:40 kraxel - - * mt352.c, saa7134-dvb.c, scripts/update: - - - pinnacle 300i starts working now ... - -2005-01-14 14:29 kraxel - - * mt352.c, mt352.h, saa7134-dvb.c, tuner.c, scripts/update: - - - pinnacle 300i starts working a bit. - -2005-01-13 18:22 kraxel - - * bttv-cards.c, bttv-vbi.c, cx88-cards.c, cx88.h, msp3400.c, - mt352.c, saa7134-cards.c, saa7134-dvb.c, saa7134.h, tda9887.c, - tuner.c, tuner.h, tveeprom.c, videodev2.h, doc/Cards, - scripts/update: - - - card-specific and other fixes from various people. - - more pinnacle 300i work (still not functional :-/). - -2005-01-11 15:17 kraxel - - * mt352.c, saa7134-cards.c, scripts/update: - - - misc card fixes. - -2005-01-07 14:58 kraxel - - * bttv-cards.c, cx88-input.c, tveeprom.c: - - - tveeprom tweaks. - - keytable for the new hauppauge remotes. - -2005-01-07 14:11 kraxel - - * bttv-cards.c, bttv-driver.c, bttv.h, cx88-tvaudio.c, - saa7134-tvaudio.c, scripts/update: - - - new bttv card (by Chris Fanning). - - misc. - -2005-01-04 17:31 kraxel - - * Make.config, mt352.c, saa7134-dvb.c, tuner.c, scripts/update: - - - more pinnacle 300i stuff (not working yet). - -2005-01-04 14:34 kraxel - - * cx88-core.c, cx88-mpeg.c, cx88-video.c: - - - fix irq initialization order bug. - -2005-01-04 13:40 kraxel - - * bttv.h, tvaudio.c, tvaudio.h: - - - tda9320 support by Johnny Casey. - -2005-01-03 19:56 kraxel - - * cx88-cards.c, tda9887.c: - - - misc. - -2005-01-03 18:56 kraxel - - * cx88-dvb.c: - - - kworld dvb fixes from Roman Petrov. - -2005-01-03 18:46 kraxel - - * cx88-cards.c, scripts/update: - - - FUSIONHDTV fix from Christopher Pascoe. - -2004-12-17 15:18 kraxel - - * bttv-driver.c, cx88-mpeg.c, cx88-video.c, saa7134-core.c: - - - spinlock init cleanups. - -2004-12-17 12:51 kraxel - - * cx88-core.c, msp3400.c, tveeprom.c, .bp/2.6/tveeprom: - - - misc fixes. - -2004-12-14 16:33 kraxel - - * Makefile, bttv-cards.c, bttv-i2c.c, bttvp.h, cx88-cards.c, - cx88.h, dvb-pll.c, saa7134-cards.c, saa7134.h, tveeprom.c, - tveeprom.h, scripts/update: - - - switch over to tveeprom for hauppauge card config. - -2004-12-10 13:33 kraxel - - * btcx-risc.c, bttv-cards.c, bttv-driver.c, bttv-i2c.c, bttv-vbi.c, - cx88-blackbird.c, cx88-core.c, cx88-i2c.c, cx88-input.c, - cx88-mpeg.c, cx88-tvaudio.c, cx88-vbi.c, cx88-video.c, dvb-pll.c, - ir-common.c, msp3400.c, mt352.c, saa7134-core.c, saa7134-dvb.c, - saa7134-empress.c, saa7134-i2c.c, saa7134-input.c, saa7134-oss.c, - saa7134-ts.c, saa7134-tvaudio.c, saa7134-vbi.c, saa7134-video.c, - tda9887.c, tvaudio.c, tvmixer.c, v4l1-compat.c, video-buf.c, - scripts/update: - - - add moduleparam.h include to many files. - - some pinnacle 300i progress (can talk to mt352 now, not working yet - through). - - misc minor stuff. - -2004-12-09 14:26 kraxel - - * cx22702.c, .bp/2.6/dvb-frontends: - - - drop unused code. - -2004-12-09 13:51 kraxel - - * Makefile, bttv-cards.c, cx22702.c, cx22702.h, cx88-cards.c, - cx88-dvb.c, cx88.h, dvb-pll.c, dvb-pll.h, ir-kbd-i2c.c, - msp3400.c, mt352.c, mt352.h, mt352_priv.h, saa6752hs.c, - saa7134-cards.c, saa7134-dvb.c, saa7134-i2c.c, saa7134-video.c, - saa7134.h, video-buf-dvb.c, video-buf-dvb.h, scripts/update: - - - work on dvb pll stuff. - - misc dvb updates. - - pinnacle 300i stuff (not working yet). - -2004-12-07 14:17 kraxel - - * cx88-blackbird.c, cx88-core.c, cx88.h, msp3400.c, tuner.c, - .bp/2.6/cx88-update: - - - misc minor stuff. - -2004-12-02 15:23 kraxel - - * bttv-driver.c, cx88-blackbird.c, cx88-video.c, saa7134-empress.c, - saa7134-video.c, video-buf.c: - - - fix memory leak in drivers. - -2004-12-02 14:44 kraxel - - * bttv-cards.c, cx88-blackbird.c, cx88-core.c, cx88.h: - - - attempt to fix cx88 blackbird. - - fix vbi initialization issue. - -2004-12-01 16:10 kraxel - - * cx88-input.c, saa6752hs.c, videodev2.h: - - - mpeg aspect ratio stuff. - -2004-11-30 18:00 kraxel - - * cx88-input.c: - - - put new source file into cvs as well ;) - -2004-11-30 18:00 kraxel - - * Makefile, cx88-cards.c, cx88-core.c, cx88-dvb.c, cx88-mpeg.c, - cx88-vbi.c, cx88-video.c, cx88.h, scripts/update: - - - new cx88-based dvb card by Christopher Pascoe. - - cx88: IR support by Christopher Pascoe and me. - -2004-11-30 12:26 kraxel - - * cx88-cards.c, cx88.h, saa7134-cards.c, saa7134-input.c, - saa7134-oss.c, saa7134-tvaudio.c, saa7134.h, tuner.c, tuner.h: - - - add new tuners. - - ir support for Compro Videomate by Michael Mellor. - -2004-11-26 13:59 kraxel - - * saa7134-cards.c, saa7134-core.c: - - - delayed module loading for saa7134. - -2004-11-24 12:55 kraxel - - * saa7134-tvaudio.c: - - - empress fixes by Gert Vervoort. - -2004-11-23 18:29 kraxel - - * bttvp.h, compat.h, cx88-core.c, cx88.h, saa6752hs.c, - saa7134-core.c, saa7134.h: - - - merge iomem annotations from Al Viro. - -2004-11-22 19:10 kraxel - - * saa6752hs.c, saa7134-cards.c, saa7134-input.c, saa7134.h, - tda9887.c: - - - saa7134: misc card-specific tweaks + new entries. - -2004-11-19 19:07 kraxel - - * bttv-cards.c, bttv-driver.c, bttv-i2c.c, bttv-risc.c, bttv.h, - bttvp.h, cx88-blackbird.c, cx88-cards.c, cx88-tvaudio.c, - cx88-video.c, msp3400.c, saa6752hs.c, saa7134-cards.c, - saa7134-core.c, saa7134-empress.c, saa7134-video.c, saa7134.h, - tda7432.c, tda9875.c, tvaudio.c, v4l2-common.c, videodev2.h: - - - misc cleanups. - - blackbird + empress updates. - -2004-11-19 13:16 kraxel - - * bttv-cards.c, saa7134-core.c, saa7134-video.c: - - - saa7134: signal detection fixes. - -2004-11-18 15:05 kraxel - - * saa6752hs.c, saa7134-cards.c, saa7134-core.c, saa7134-empress.c, - saa7134-video.c, saa7134.h, video-buf-dvb.c, videodev2.h: - - - a batch of mpeg2/empress fixes/changes. - -2004-11-17 19:47 kraxel - - * bttv-i2c.c, bttv-if.c, cx88-blackbird.c, cx88-cards.c, - cx88-core.c, saa7134-cards.c, scripts/update: - - - misc minor cleanups and card-specific fixes. - -2004-11-10 12:07 kraxel - - * Makefile, bttv-driver.c, bttv.h, saa6752hs.c, saa6752hs.h, - saa7134-cards.c, saa7134-empress.c, saa7134-input.c, - saa7134-tvaudio.c, tda9887.c, tuner.c, videodev2.h: - - - lots of empress stuff from Andrew de Quincey + some rewrites from me. - - misc fixes. - -2004-11-09 12:34 kraxel - - * bttv-cards.c, bttv-driver.c, saa7134-cards.c, saa7134-core.c, - saa7134-empress.c, tda9887.c, tuner.c, tuner.h, tvaudio.c, - tvmixer.c: - - - avermedia fixes (by Nickolay V. Shmyrev). - - make it build on non-cutting edge kernels (i.e. 2.6.9 ;) - - convert remaining modules to new-style insmod options. - -2004-11-08 11:57 kraxel - - * saa7134-cards.c: - - - saa7134: cardlist update (Michael Rodriguez-Torrent). - -2004-11-07 15:44 kraxel - - * bttv-driver.c, cx88-dvb.c, cx88-video.c, saa7134-cards.c, - saa7134-core.c, saa7134-dvb.c, saa7134-video.c, video-buf.c: - - - kill obsolete stuff. - -2004-11-07 14:17 kraxel - - * btcx-risc.c, bttv-cards.c, bttv-driver.c, bttv-i2c.c, bttv-vbi.c, - cx88-blackbird.c, cx88-dvb.c, cx88-vbi.c, cx88-video.c, - ir-common.c, saa7134-core.c, saa7134-dvb.c, saa7134-empress.c, - saa7134-i2c.c, saa7134-input.c, saa7134-oss.c, saa7134-ts.c, - saa7134-tvaudio.c, saa7134-vbi.c, saa7134-video.c, tda9887.c, - tuner.c, v4l1-compat.c, video-buf-dvb.c, video-buf-dvb.h, - video-buf.c, video-buf.h, scripts/update: - - - yet another video-buf interface change + fixups. - - move more modules to new-style insmod options. - -2004-11-05 10:40 kraxel - - * cx88-dvb.c, saa7134-cards.c: - - - misc. - -2004-11-04 12:03 kraxel - - * saa7134-cards.c, saa7134.h: - - - saa7134: added cinergy mobile (thanks to Hans Koch), tuner not - working yet through ... - -2004-11-03 10:04 kraxel - - * bttv-driver.c, bttv-gpio.c, cx88-cards.c, cx88-dvb.c, cx88.h, - ir-kbd-i2c.c, msp3400.c, saa7134-cards.c, saa7134.h: - - - cx88: fix/add dvb cards by Christopher Pascoe - - saa7134: new card - - misc minor fixes. - -2004-10-27 20:34 kraxel - - * bttv-cards.c, bttv-gpio.c, bttv-i2c.c, videodev.h: - - - drop some old, obsolete code. - - misc fixes. - -2004-10-25 13:51 kraxel - - * cx88-tvaudio.c: - - - cx88 try to make PAL-I sound work. - -2004-10-25 13:26 kraxel - - * bttv-cards.c, bttv-driver.c, bttvp.h, cx88-core.c, cx88-mpeg.c, - cx88-video.c, cx88.h, ir-kbd-gpio.c, saa7134-cards.c, - saa7134-input.c, saa7134.h, tda9887.c, tuner.c, - .bp/2.6/saa7134-update, .bp/2.6/video-buf: - - - new saa7134 card by Nickolay V. Shmyrev - - misc stuff - -2004-10-21 14:51 kraxel - - * Makefile, video-buf-dvb.c, .bp/2.6/20_v4l2, .bp/2.6/30_video-buf, - .bp/2.6/31_bt832, .bp/2.6/31_i2c, .bp/2.6/31_ir-input, - .bp/2.6/31_tuner, .bp/2.6/32_bttv, .bp/2.6/32_bttv-input, - .bp/2.6/33_saa7134, .bp/2.6/34_cx22702, .bp/2.6/34_cx88, - .bp/2.6/35_documentation: - - - kill old buildpatch files. - -2004-10-20 19:44 kraxel - - * Makefile, cx22702.c, cx22702.h, cx88-dvb.c, saa7134-dvb.c, - saa7134-empress.c, saa7134.h, video-buf-dvb.c, video-buf-dvb.h: - - - switch over to "frontend refactored" cvs branch. - -2004-10-20 11:43 kraxel - - * tuner.c, video-buf-dvb.c: - - - tuner: switch to new module parameters. - - misc cleanups. - -2004-10-19 18:02 kraxel - - * Make.config, Makefile, cx22702.c, cx88-blackbird.c, cx88-cards.c, - cx88-dvb.c, cx88-mpeg.c, cx88-video.c, cx88.h, saa7134-cards.c, - saa7134-core.c, saa7134-dvb.c, saa7134-empress.c, saa7134-ts.c, - saa7134-tvaudio.c, saa7134-video.c, saa7134.h, video-buf-dvb.c, - video-buf-dvb.h, scripts/update: - - - saa7134 reorganiation for modular mpeg2 stuff - - splitted some generic dvb code into the new video-buf-dvb module. - -2004-10-15 12:29 kraxel - - * cx88-video.c, msp3400.c, saa7134-tvaudio.c, scripts/update: - - - fix cx88 polling. - -2004-10-13 13:28 kraxel - - * .bp/2.6/: bttv-input, bttv-update, cx88-update, dvb-frontends, - i2c-bt832, i2c-ir, i2c-misc, i2c-tuner, saa7134-update, - v4l-driver-doc, v4l2-api, video-buf: - - - rename generated patches. - -2004-10-13 12:38 kraxel - - * audiochip.h, bt832.c, bt832.h, bt848.h, btcx-risc.c, - bttv-cards.c, bttv-driver.c, bttv-gpio.c, bttv-i2c.c, bttv-if.c, - bttv-risc.c, bttv-vbi.c, bttv.h, bttvp.h, cx22702.c, cx88-alsa.c, - cx88-blackbird.c, cx88-cards.c, cx88-core.c, cx88-dvb.c, - cx88-i2c.c, cx88-mpeg.c, cx88-reg.h, cx88-tvaudio.c, cx88-vbi.c, - cx88-video.c, dpl3518.c, dpl3518.h, ir-common.c, msp3400-old.c, - msp3400.c, plx9054.h, rds-saa6588.c, saa6752hs.c, saa6752hs.h, - saa7134-cards.c, saa7134-core.c, saa7134-i2c.c, saa7134-input.c, - saa7134-oss.c, saa7134-ts.c, saa7134-tvaudio.c, saa7134-vbi.c, - saa7134-video.c, saa7134.h, tda7432.c, tda9875.c, tda9887.c, - tuner.c, tuner.h, tvaudio.c, tvmixer.c, v4l1-compat.c, - v4l2-common.c, video-buf.c, video-buf.h, videodev.h, videodev2.h, - scripts/strip-trailing-whitespaces.sh: - - - kill trailing whitespaces. - -2004-10-12 19:08 kraxel - - * saa7134-cards.c, saa7134-core.c, saa7134.h, videodev2.h, - .bp/2.6/34_cx22702, scripts/update: - - - saa7134: card list updates. - - some v4l2 mpeg ioctl tweaks. - -2004-10-12 09:33 kraxel - - * bttv-driver.c, cx22702.c, cx88-blackbird.c, cx88-cards.c, - cx88-core.c, cx88-dvb.c, cx88-mpeg.c, cx88-video.c, cx88.h, - tuner.c, scripts/update: - - - more power management stuff. - - misc fixes. - -2004-10-11 16:53 kraxel - - * bttv-driver.c, cx88-blackbird.c, cx88-video.c, saa7134-ts.c, - saa7134-video.c, video-buf.c, video-buf.h, scripts/update: - - - fix poll/select oops. - -2004-10-11 15:45 kraxel - - * Make.config, bttv-driver.c, cx22702.c, cx88-cards.c, cx88-i2c.c, - cx88-tvaudio.c, cx88-vbi.c, cx88-video.c, cx88.h, tuner.c, - scripts/update: - - - some powermanagement stuff. - - misc minor fixes. - -2004-10-08 13:22 kraxel - - * bttv-driver.c, msp3400.c, tda9887.c, tuner.c: - - - add suspend support for some i2c modules. - -2004-10-07 14:29 kraxel - - * cx88-blackbird.c, cx88-core.c, cx88-dvb.c, cx88-i2c.c, - cx88-mpeg.c, cx88-tvaudio.c, cx88-vbi.c, cx88-video.c, msp3400.c, - scripts/update: - - - switch msp3400 + cx88 to 2.6-style module parameters. - -2004-10-07 13:29 kraxel - - * msp3400-old.c, msp3400.c, scripts/update: - - - created a copy of the current msp3400 module (with 2.4 support). - - msp3400: 2.6-ified it (use kthread, throw away several ifdefs). - - msp3400: use a kernel thread for msp34xxg as well, so the std - detection runs asyncronly. - -2004-10-06 19:30 kraxel - - * bttv-driver.c, bttv-i2c.c, bttv-risc.c, bttv-vbi.c, bttvp.h, - cx88-i2c.c, saa7134-i2c.c, scripts/update: - - - bttv: irq fixes. - - add i2c scans. - -2004-10-06 15:45 kraxel - - * bttv-cards.c, cx88-cards.c, cx88-video.c, tda9887.c: - - - cx88: AverTV Studio 303 (M126) fixes. - -2004-10-05 14:57 kraxel - - * bttv-i2c.c, compat.h, msp3400.c: - - - misc build fixes. - - start switching over msp34xx to v4l2. - -2004-09-30 16:17 kraxel - - * msp3400.c, saa7134-cards.c: - - - saa7134: cinergy 200 fixes. - - msp3400: drop dfp register access hooks. - -2004-09-30 15:47 kraxel - - * msp3400.c, msp3400.h, tuner.c: - - - tuner: fix entries. - - msp3400: merge with ivtv -- part one (thanks to David George). - -2004-09-30 14:21 kraxel - - * Make.config, Makefile, bttv-driver.c, saa7134-cards.c, saa7134.h: - - - cx88: build dvb stuff only on 2.6.9. - - saa7134: new card by Michael Rodriguez-Torrent. - - bttv: remove check for cx88 boards. - -2004-09-27 19:15 kraxel - - * cx22702.c, cx88-blackbird.c: - - - blackbird oops fix. - -2004-09-23 15:58 kraxel - - * Makefile, bttv-driver.c, bttv-vbi.c, cx22702.c, cx22702.h, - cx88-blackbird.c, cx88-cards.c, cx88-dvb.c, cx88-i2c.c, - cx88-vbi.c, cx88-video.c, cx88.h, saa7134-ts.c, saa7134-vbi.c, - saa7134-video.c, video-buf.c, video-buf.h, scripts/update: - - - make video-bufg don't touch struct file any more, pass through - a void ptr instead of a file ptr everythere. - - add cx22702 fe driver, - -2004-09-22 13:47 kraxel - - * bttv-i2c.c, cx88-cards.c, cx88-core.c, msp3400.c, - saa7134-tvaudio.c, tda9887.c, tuner.c: - - - misc sleep cleanups. - -2004-09-20 19:31 kraxel - - * saa7134.h: - - - fix tyops. - -2004-09-20 15:53 kraxel - - * saa7134-cards.c, saa7134-tvaudio.c, saa7134.h, videodev2.h: - - - saa7134: add Compro VideoMate TV Gold+ (Eric Dorland). - - v4l2: mpeg ioctl tweaks. - -2004-09-20 13:53 kraxel - - * cx88-cards.c, cx88.h: - - - cx88: add Provideo PV259 by Steven Myers. - -2004-09-20 13:39 kraxel - - * bttv-driver.c, cx88-cards.c, cx88-i2c.c, tuner.c, videodev2.h: - - - bttv: dark red image fixed (thanks to jeremy smith). - - misc cx88 tweaks. - -2004-09-17 13:49 kraxel - - * cx88-tvaudio.c, cx88.h, videodev2.h: - - - cx88: maybe fix nicam + pal-i - - v4l2: mpeg api first cut - -2004-09-16 17:38 kraxel - - * bttv-cards.c, cx88-cards.c, saa7134-tvaudio.c: - - - misc card specific stuff. - -2004-09-16 11:06 kraxel - - * scripts/strip-trailing-whitespaces.sh: - - - add script to kill trailing whitespaces in the sources. - -2004-09-16 10:43 kraxel - - * bttv-i2c.c: - - - bttv: take care that i2c adapter class is set correctly. - -2004-09-16 10:27 kraxel - - * cx88-cards.c: - - - autoload frontends. - -2004-09-16 09:05 kraxel - - * bttv-risc.c, cx88-core.c, cx88-i2c.c: - - - bttv: fix planat capture. - - bttv: add risc buffer size sanity checks. - -2004-09-15 18:15 kraxel - - * btcx-risc.c, btcx-risc.h, bttv-cards.c, bttv-driver.c, - bttv-gpio.c, bttv-i2c.c, bttv-if.c, bttv-risc.c, bttv-vbi.c, - bttv.h, bttvp.h, cx88-cards.c, cx88-core.c, cx88-dvb.c, - cx88-i2c.c, cx88-reg.h, cx88-tvaudio.c, cx88-vbi.c, ir-common.c, - ir-common.h, ir-kbd-gpio.c, ir-kbd-i2c.c, saa7134-cards.c, - saa7134-core.c, saa7134-i2c.c, saa7134-input.c, saa7134-oss.c, - saa7134-reg.h, saa7134-ts.c, saa7134-tvaudio.c, saa7134-vbi.c, - saa7134-video.c, saa7134.h, video-buf.c, video-buf.h: - - - added a bunch of Id tags. - -2004-09-15 17:35 kraxel - - * bttv-risc.c, cx88-dvb.c, cx88-i2c.c, cx88-mpeg.c, scripts/update: - - - bttv: fix planar capture oops. - - cx88: make dvb driver quiet. - - cx88: some i2c init/exit fixes. - -2004-09-10 14:13 kraxel - - * tuner.c, tuner.h: - - - add TCL 2002N tuner (Michael T. Dean). - -2004-09-10 10:54 kraxel - - * .cvsignore: - - - update .cvsignore for 2.4 - -2004-09-10 10:50 kraxel - - * compat.h, cx88-blackbird.c, cx88-i2c.c: - - - cx88: i2c fixups. - -2004-09-10 10:46 kraxel - - * Make.config, ir-common.h, msp3400.c, tuner.c: - - - fix 2.4 kernel builds. - -2004-09-09 16:00 kraxel - - * cx88-blackbird.c: - - - gcc 2.95 build fix. - -2004-09-07 16:30 kraxel - - * bttv-cards.c, cx88-cards.c, cx88.h, .bp/2.6/34_cx88: - - - cx88: add connexant dvb reference design by Andrew de Quincey - - misc fixes. - -2004-09-06 15:29 kraxel - - * cx88-dvb.c, saa7134-cards.c, saa7134-input.c: - - - IR remote support for Medion 2819 by Alex - - more cx88 dvb fixes. - -2004-09-06 14:00 kraxel - - * saa7134-core.c: - - - fix saa7134 oops. - -2004-09-06 12:40 kraxel - - * cx88-dvb.c, cx88-mpeg.c, cx88.h: - - - cx88: misc dvb tweaks. - -2004-09-06 11:25 kraxel - - * bttv-cards.c, bttv.h, cx88-cards.c, cx88.h, saa7134-cards.c: - - - bttv: add DVICO FusionHDTV DVB-T Lite (Christopher Pascoe). - - cx88: add Hauppuage Nova-T DVB-t (Steve Toth). - -2004-09-03 16:54 kraxel - - * bttv-driver.c, cx88-blackbird.c, msp3400.c, saa6752hs.c, - saa7134-core.c, saa7134-ts.c, saa7134.h: - - - msleep() cleanups from kernel janitors. - -2004-09-03 11:25 kraxel - - * cx88-dvb.c, cx88.h: - - - cx88: minor dvb tweaks. - -2004-09-01 21:18 kraxel - - * cx88-core.c: - - - cx88: fix wrapfix. - -2004-09-01 21:17 kraxel - - * bttv-cards.c: - - - s/0/NULL/. - -2004-08-31 16:46 kraxel - - * cx88-core.c: - - - cx88: make cx88_wakeup() work correctly after waking 2^16 buffers. - -2004-08-31 16:08 kraxel - - * cx88-dvb.c, cx88-mpeg.c, cx88.h: - - - cx88: add timeout error counter. - -2004-08-31 13:58 kraxel - - * bttv-driver.c, cx88-blackbird.c, cx88-cards.c, cx88-core.c, - cx88-dvb.c, cx88-i2c.c, cx88-mpeg.c, cx88-vbi.c, cx88-video.c, - cx88.h: - - - cx88: merge dvb patches (by Christopher Pascoe), step one. - - cx88: added some code lines for error stats. - -2004-08-26 12:59 kraxel - - * cx88-cards.c, cx88-tvaudio.c, cx88-video.c, cx88.h, tuner.c, - tuner.h: - - - cx88: Dvico FusionHDTV patches by Mac Michaels - -2004-08-26 12:03 kraxel - - * doc/hauppauge-wintv-cx88-ir.txt: - - - add hauppauge IR docs. - -2004-08-26 12:03 kraxel - - * compat.h: - - - add __user + __kernel #defines for older kernels. - -2004-08-25 18:25 kraxel - - * saa7134-oss.c, doc/README.cx88: - - - saa7134: build fix. - - cx88: doc update. - -2004-08-25 17:53 kraxel - - * bttv-cards.c, bttv-driver.c, ir-kbd-gpio.c, ir-kbd-i2c.c, - saa7134-core.c, saa7134-oss.c, saa7134-ts.c, saa7134-video.c, - tvmixer.c, v4l1-compat.c, video-buf.c, video-buf.h, videodev.h, - videodev2.h: - - - merge 2.6.9-rc1 changes (mostly __user stuff). - -2004-08-25 16:47 kraxel - - * Makefile, cx88-blackbird.c, cx88-cards.c, cx88-core.c, - cx88-dvb.c, cx88-mpeg.c, cx88-tvaudio.c, cx88-vbi.c, - cx88-video.c, cx88.h, tuner.c, tuner.h, scripts/update: - - - cx88: plenty of mpeg work. blackbird might even work with - some luck. dvb needs more work. - -2004-08-23 12:43 kraxel - - * saa7134-cards.c, saa7134.h, tuner.c: - - - saa7134: new card by Alain St-Denis - -2004-08-23 12:38 kraxel - - * bttv-risc.c, cx88-blackbird.c, cx88-cards.c, cx88.h, tuner.c, - tuner.h: - - - some bttv debug code. - - new tuner type by Michael T. Dean - -2004-08-17 13:24 kraxel - - * bttv-cards.c, bttv.h, ir-kbd-gpio.c, tuner.c: - - - bttv card list updates (by Attila Kondoros + others). - -2004-08-17 11:19 kraxel - - * bttv-cards.c, bttv-i2c.c, bttv.h: - - - bttv: two new cards by Andre Schwarz - - bttv: i2c-hw bugfix. - -2004-08-16 12:40 kraxel - - * bttv-cards.c: - - - bttv: firmware loader fix by Kenneth Aafløy - -2004-07-30 17:26 kraxel - - * cx88-blackbird.c, cx88-mpeg.c, cx88-reg.h: - - - cx88: started going over the blackbird code. - -2004-07-30 15:43 kraxel - - * Makefile, bttvp.h, compat.h, cx88-blackbird.c, cx88-core.c, - cx88-dvb.c, cx88-mpeg.c, cx88-tvaudio.c, cx88-vbi.c, - cx88-video.c, cx88.h, id.h, saa6752hs.c, saa7134.h: - - - cx88: more reorganization + code shuffeling. - -2004-07-30 13:14 kraxel - - * cx88-alsa.c, cx88-cards.c, cx88-core.c, cx88-mpeg.c, - cx88-video.c, cx88.h: - - - cx88: more reorganization stuff. - -2004-07-29 23:35 kraxel - - * Makefile, cx88-alsa.c, cx88-blackbird.c, cx88-cards.c, - cx88-core.c, cx88-i2c.c, cx88-mpeg.c, cx88-tvaudio.c, cx88-vbi.c, - cx88-video.c, cx88.h, saa7134-core.c, scripts/update: - - - cx88: big code reorganization. - - cx88: started merging blackbird patches, not working yet. - -2004-07-29 14:49 kraxel - - * cx88-cards.c: - - - cx88: enable radio for MSI TV@nywhere master. - -2004-07-28 13:32 kraxel - - * bttv-cards.c, tuner.c, tuner.h: - - - tuner: added new type. - - bttv: added id. - -2004-07-23 03:06 kraxel - - * cx88-tvaudio.c, cx88-video.c, cx88.h: - - - add range check for cx88 card= insmod option. - - make cx88 tvaudio less verbose. - -2004-07-22 15:54 kraxel - - * bttv-gpio.c, bttv-i2c.c, bttv.h, bttvp.h, cx88-video.c: - - - saa7134 build fix. - - bttv i2c attach/detach hook for subdrivers. - -2004-07-22 15:34 kraxel - - * cx88-video.c: - - - filter fixes for secam. - -2004-07-15 20:29 kraxel - - * bttv-driver.c: - - - bttv: alignment fix. - -2004-07-14 14:42 kraxel - - * saa7134-cards.c: - - - saa7134: add some printks with config hints. - -2004-07-14 14:25 kraxel - - * saa7134-cards.c, saa7134-oss.c, saa7134-tvaudio.c, - saa7134-video.c, saa7134.h: - - - saa7134: drop i2s_rate field + related changes. - - saa7134: adapt sync_control bits when the signal comes and goes away. - -2004-07-08 09:38 kraxel - - * cx88-cards.c, cx88-video.c, saa7134-cards.c: - - - misc fixes. - -2004-07-07 16:37 kraxel - - * cx88-cards.c: - - - cx88: ATI TV Wonder Pro tweaks. - -2004-07-07 08:42 kraxel - - * cx88-cards.c, cx88-i2c.c, cx88-video.c, cx88.h, saa7134-cards.c, - saa7134-core.c, saa7134-i2c.c, saa7134-tvaudio.c, - saa7134-video.c, saa7134.h, tda9887.c, tuner.h, - doc/CARDLIST.saa7134, doc/Cards: - - - saa7134: add automute option. - - tda9887: add config i2c command. - -2004-07-06 12:26 kraxel - - * cx88-video.c, cx88.h: - - - more secam fixups. - -2004-07-06 09:52 kraxel - - * bttv-risc.c: - - - bttv: finetune chroma lines used for yuv planar modes (based on patch - by Michael Niedermayer). - -2004-06-30 20:30 kraxel - - * saa7134.h: - - - saa7134 build fix. - -2004-06-30 17:09 kraxel - - * tda9887.c: - - - add missing break. - -2004-06-30 16:46 kraxel - - * bt832.c, ir-kbd-i2c.c, msp3400.c, saa6752hs.c, tda7432.c, - tda9875.c, tda9887.c, tuner.c, tvaudio.c, tvmixer.c: - - - batch of triviasl i2c fixes by Arthur Othieno. - -2004-06-30 16:40 kraxel - - * saa7134-cards.c: - - - saa7134: initial TerraTec Cinergy 200 TV support by Patrick Grimm. - -2004-06-30 16:13 kraxel - - * tda9887.c: - - - tda9887: radio afc support by Robert DeLuca. - -2004-06-30 14:20 kraxel - - * cx88-cards.c, cx88.h: - - - oops, tyops. - -2004-06-30 14:18 kraxel - - * cx88-cards.c, cx88-video.c, cx88.h: - - - cx88: KWorld DVB-T card entry by Soyeb Aswat - -2004-06-29 09:33 kraxel - - * cx88-cards.c, tuner.c: - - - lg tuner fix by Andrzej Stypula. - -2004-06-25 13:53 kraxel - - * saa7134-video.c: - - - fix saa7134 radio tuning (thanks to Robert DeLuca). - -2004-06-23 16:33 kraxel - - * bttv-cards.c, bttv.h, cx88-video.c, cx88.h, ir-kbd-gpio.c, - saa7134-ts.c, tuner.c: - - - misc fixes from various people. - -2004-06-09 11:51 kraxel - - * cx88-cards.c: - - - cx88: asus card entry update by Alex Deucher - -2004-06-09 11:48 kraxel - - * cx88-cards.c, cx88.h: - - - cx88: MSI TV-@nywhere updates by David Lloyd - -2004-06-08 12:19 kraxel - - * bt832.c, bttv-cards.c, bttv-i2c.c, cx88-cards.c, cx88-i2c.c, - id.h, msp3400.c, saa6752hs.c, saa7134-i2c.c, tda7432.c, - tda9875.c, tda9887.c, tuner.c, tvaudio.c, tvmixer.c: - - - update i2c stuff for the changes in upcoming 2.6.7 - -2004-06-07 15:22 kraxel - - * bttv-cards.c, bttv.h, cx88-cards.c, cx88.h, ir-kbd-i2c.c: - - - added more cards to cx88 + bttv, this time tried to compile before - commit Anja ;) - -2004-06-07 13:33 kraxel - - * bttv-cards.c: - - - bttv: add Spirit TV Tuner by Stafford Goodsell - -2004-05-28 18:21 kraxel - - * ir-common.h, video-buf.c: - - - userptr fix. - - add KEY_TEXT define for 2.4. - -2004-05-26 16:05 kraxel - - * ir-kbd-gpio.c, saa6752hs.c, saa7134-cards.c, saa7134-ts.c, - saa7134.h: - - - saa7134: add Items MuchTV card by Norman Jonas. - - saa7134: make ts buffer size configurable by Andrew de Quincey. - -2004-05-25 11:27 kraxel - - * bttv-cards.c, cx88-cards.c, cx88-video.c, cx88.h: - - - cx88: added Prolink PlayTV PVR by Matheus Izvekov. - - cx88: kill temporary oops debug code. - -2004-05-24 15:24 kraxel - - * cx88-cards.c, cx88.h, ir-common.c: - - - cx88: add IODATA GV-VCP3/PCI by 河村直樹 (Kawamura Naoki). - - ir-common: update rc5 keytable. - -2004-05-24 15:13 kraxel - - * ir-kbd-gpio.c: - - - ir-kbd-gpio: fix winfast2000 keymask (by Torbjörn Jansson). - -2004-05-24 14:58 kraxel - - * bttv-cards.c: - - - bttv: modtec tuner detection updated (by Christopher Hill). - -2004-05-24 14:57 kraxel - - * cx88-cards.c, cx88-tvaudio.c, cx88-video.c, saa7134-cards.c, - saa7134-input.c: - - - added insmod option to disable saa7134 input device. - - card list updates. - - cx88 alignment fix. - -2004-05-14 12:17 kraxel - - * ir-kbd-gpio.c: - - - avermedia IR fixes (by Tomas Kopal). - -2004-05-13 20:44 kraxel - - * saa7134-input.c, saa7134-tvaudio.c, saa7134-video.c: - - - saa7134 audio scan fixes. - - add insmod option to disable IR support in saa7134. - -2004-05-13 19:04 kraxel - - * cx88-video.c, saa7134-ts.c, saa7134-video.c, tda9887.c, tuner.c, - .bp/2.4/34_cx88, scripts/update: - - - v4l2 support in tuner + tda9887 - - switch over cx88 + saa7134 to use v4l2 for tuning. - - misc tweaks. - -2004-05-07 11:00 kraxel - - * cx88-vbi.c, cx88-video.c, msp3400.c, tuner.c: - - - fix and enable single field capture in cx88. - - mt2050 antenna selection, based on patch by Matthias Reichl. - - msp3400 cleanups by Perry Gilfillan. - -2004-04-28 09:56 kraxel - - * bttv-cards.c, cx88-i2c.c, cx88-video.c: - - - add bt878-based dvb card. - -2004-04-23 17:44 kraxel - - * cx88-video.c: - - - cx88: minor audio fixes. - -2004-04-23 11:21 kraxel - - * cx88-cards.c, cx88-tvaudio.c: - - - cx88: MSI TVanywhere fixes from dscaler via Michal. - - cx88: fix nicam kernel oops. - -2004-04-23 10:54 kraxel - - * tda9887.c: - - - tda9887: enable QSS by default (use qss=0 to disable if needed). - -2004-04-23 10:47 kraxel - - * ir-common.h, ir-kbd-i2c.c: - - - ir-kbd-i2c: purpletv ir fixes by 陳王展 (Wang-Chan Chen). - -2004-04-23 10:15 kraxel - - * bttv-cards.c, bttv.h: - - - bttv: support for the Picolo Tetra by Eric DEBIEF - -2004-04-23 10:08 kraxel - - * saa7134-cards.c, saa7134-input.c: - - - saa7134: IR support for the smarttv by Maciej Zarzycki vel Maczar - -2004-04-22 13:06 kraxel - - * cx88-cards.c, cx88-video.c, cx88.h, tda9887.c: - - - cx88: print some help for unknown cards. - - tda9887: make qss insmod option work for both enable/disable. - -2004-04-21 15:56 kraxel - - * Makefile, bttvp.h, cx88.h, saa7134.h, scripts/release.sh: - - - bumb versions for release. - -2004-04-21 13:31 kraxel - - * saa7134-cards.c: - - - tuner fix. - -2004-04-21 10:48 kraxel - - * cx88-tvaudio.c, ir-kbd-i2c.c, saa7134-cards.c, saa7134-core.c, - saa7134-input.c, saa7134-video.c, saa7134.h, tda9887.c: - - - saa7134: new card entry (by m8923014@msg.ndhu.edu.tw). - - ir-kbd-i2c: new remote (also m8923014@msg.ndhu.edu.tw). - -2004-04-19 18:37 kraxel - - * bttv-driver.c, cx88-cards.c, cx88-tvaudio.c, ir-kbd-gpio.c, - saa7134-cards.c, saa7134-input.c, saa7134.h, tuner.c, - video-buf.c, .bp/2.6/31_i2c, .bp/2.6/31_tuner: - - - cx88: some btsc-sap bits (not enabled yet). - - saa7134: new entry for the avermedia 305. - - misc fixes. - -2004-04-15 12:41 kraxel - - * cx88-video.c: - - - cx88: reverse volume control scale (high values == loud). - -2004-04-15 12:33 kraxel - - * .cvsignore, cx88-tvaudio.c, cx88-video.c, cx88.h: - - - add audio status monitoring thread to cx88. - -2004-04-14 13:19 kraxel - - * cx88-video.c, saa7134-oss.c, tda9887.c, video-buf.c, videodev2.h: - - - cx88/tda9887: secam fixes. - - video-buf: add sanity checks (thanks to Laurent Pinchart). - - saa7133: fix off-by-one bug for oss sound recording. - -2004-04-13 19:00 kraxel - - * bttv-driver.c, bttv-risc.c, bttv-vbi.c, bttvp.h, saa7134-cards.c, - saa7134-oss.c, saa7134-tvaudio.c, saa7134.h: - - - bttv: splitted video + vbi buffer switching, that should make bttv - less sensitive to IRQ latencies. - - saa7134: new card added, minor saa7133 fixes (by toshii@netbsd.org). - -2004-04-13 14:47 kraxel - - * cx88-reg.h, cx88-tvaudio.c, saa7134-cards.c: - - - cx88: some tvaudio code from dscaler cvs (btsc + nicam). - -2004-04-13 13:59 kraxel - - * bttv-cards.c, cx88-cards.c, tda9887.c: - - - tda9887: secam-dk support - - cx88: new pci subsystem id for cx88-cards.c - - bt878: pinnacle/rave radio fix - -2004-04-08 14:45 kraxel - - * cx88-video.c: - - - fix cx88 CrCb swapping (credits go to alsa@slackware.ru). - -2004-04-08 11:03 kraxel - - * cx88-tvaudio.c, saa7134-video.c: - - - cx88: more PAL-DK fixes. - -2004-04-08 10:14 kraxel - - * cx88-tvaudio.c, saa7134-tvaudio.c, doc/CARDLIST.saa7134: - - - cx88: fix PAL-DK fm/stereo. - - misc. - -2004-04-06 17:58 kraxel - - * saa7134-cards.c: - - - add saa7134 asus inputs (by Martin Hicks). - -2004-04-06 17:42 kraxel - - * saa7134-tvaudio.c: - - - add retry loop for carrier scan. - -2004-04-06 17:36 kraxel - - * cx88-video.c: - - - fix cx88 svideo. - -2004-04-06 17:24 kraxel - - * tda9887.c, tuner.c, videodev2.h, scripts/update: - - - major rewrite of the tda9887 module. - - start switching over tuner + tda9887 to v4l2. - -2004-04-06 15:19 kraxel - - * saa7134-cards.c: - - - saa7134 card list fixes. - -2004-04-06 15:19 kraxel - - * video-buf.c: - - - make pci_sync change depend on kernel version. - -2004-04-05 18:57 kraxel - - * tda9887.c, scripts/cardlist, scripts/saa7134.pl, scripts/update: - - - added tda9887 debug code. - - scripts/saa7134.pl fix. - -2004-04-05 15:04 kraxel - - * saa7134-cards.c, saa7134-tvaudio.c, videodev2.h: - - - new Bayer image format for v4l2. - - misc saa7134 fixes. - -2004-04-05 10:48 kraxel - - * bttvp.h, cx88.h, saa7134.h, scripts/release.sh (utags: - release-20040405): - - - update version numbers for release. - -2004-04-05 10:13 kraxel - - * video-buf.c (tags: release-20040405): - - - merge video-buf fix from 2.6.5 - -2004-04-05 10:09 kraxel - - * ir-common.h (tags: release-20040405): - - - add some KEY_* #defines for 2.4 compatibility. - -2004-04-01 13:51 kraxel - - * saa7134-cards.c, saa7134-tvaudio.c (utags: release-20040405): - - - fix tuner for saa7133 asus board. - -2004-03-31 22:24 kraxel - - * cx88-cards.c (tags: release-20040405), cx88-video.c (tags: - release-20040405), cx88.h, saa7134-cards.c: - - - tda9887 autoload for cx88. - -2004-03-31 13:16 kraxel - - * bttv-cards.c (tags: release-20040405), bttv-driver.c (tags: - release-20040405), bttv-i2c.c (tags: release-20040405), bttvp.h, - saa7134-cards.c: - - - make bttv hw i2c configurable per card, enable for twinhan dst. - -2004-03-30 17:59 kraxel - - * bttv-driver.c, cx88-tvaudio.c (tags: release-20040405): - - - fix byte-wide register access in cx88. - -2004-03-30 12:32 kraxel - - * cx88-i2c.c (tags: release-20040405): - - - fix buffer overflow in cx8800_i2c_init. - -2004-03-30 11:35 kraxel - - * bttv-cards.c: - - - ImageNation PXC200* fixes by Luke Fletcher - -2004-03-29 20:28 kraxel - - * cx88-cards.c: - - - tuner added for the cx88 winfast. - -2004-03-29 18:41 kraxel - - * ir-kbd-i2c.c (tags: release-20040405): - - - pv951 IR support by Mark Phalan. - -2004-03-25 19:23 kraxel - - * cx88-reg.h (tags: release-20040405): - - - fix register #define. - -2004-03-25 17:26 kraxel - - * bttv-driver.c: - - - minor vbi fix. - - add some latency debug code to the bttv irq handler - (enable with debug_latency=1). - -2004-03-25 15:16 kraxel - - * saa7134-input.c (tags: release-20040405): - - - saa7134 IR updates by Job D. R. Borges - -2004-03-25 14:00 kraxel - - * bttv-driver.c, cx88-vbi.c (tags: release-20040405), cx88-video.c, - cx88.h, saa7134-core.c (tags: release-20040405): - - - cx88 vbi fixes by Tom Zoerner - -2004-03-17 13:18 kraxel - - * saa7134-video.c (tags: release-20040405): - - - fix saa7134 cropping. - -2004-03-17 12:31 kraxel - - * bttv-cards.c, cx88-cards.c, cx88-video.c, doc/README.cx88 (tags: - release-20040405): - - - bttv card list update. - - attempt to fix svideo in cx88. - - documentation update. - -2004-03-17 09:13 kraxel - - * cx88-tvaudio.c, cx88-vbi.c, cx88-video.c: - - - misc cx88 fixes. - -2004-03-16 13:59 kraxel - - * cx88-tvaudio.c, cx88-video.c, cx88.h: - - - misc. - -2004-03-16 13:34 kraxel - - * cx88-cards.c, cx88-tvaudio.c, cx88-video.c, cx88.h, tuner.c - (tags: release-20040405), scripts/update (tags: - release-20040405): - - - plenty of cx88 audio fixes. - * grabbed some A2 code from dscaler cvs. - * merged patches by zarquon@earendel.org. - * code cleanups. - -2004-03-15 13:46 kraxel - - * bttv-cards.c, saa7134-video.c, v4l1-compat.c (tags: - release-20040405), videodev2.h (tags: release-20040405): - - - cropcap fixes. - - v4l1-compat fix. - -2004-03-10 12:18 kraxel - - * cx88-cards.c, saa7134-video.c, saa7134.h: - - - crop support for saa7134. - -2004-03-08 11:26 kraxel - - * saa7134-oss.c (tags: release-20040405), video-buf.c, video-buf.h - (tags: release-20040405): - - - fix saa7134 oss oops. - -2004-03-05 16:39 kraxel - - * cx88-cards.c, cx88-i2c.c, cx88-video.c, ir-kbd-gpio.c (tags: - release-20040405), saa7134-core.c, saa7134-oss.c, saa7134.h, - v4l1-compat.c, video-buf.c, video-buf.h, doc/CARDLIST.bttv (tags: - release-20040405), doc/CARDLIST.saa7134 (tags: release-20040405), - doc/CARDLIST.tuner (tags: release-20040405), doc/README.cx88, - scripts/saa7134.pl (tags: release-20040405), scripts/update: - - - more cards supported in ir-kbd-gpio.c - - add magics to video-buf structs. - - fix saa7134 oss driver spinlocks. - - misc minor stuff. - -2004-03-01 13:16 kraxel - - * bttv-driver.c, cx88-cards.c: - - - reprogram picture settings after reset. - -2004-02-24 20:20 kraxel - - * bttvp.h, cx88.h, saa7134.h, scripts/release.sh: - - - bump version numbers for release. - -2004-02-24 19:46 kraxel - - * .bp/2.6/34_cx88 (tags: release-20040405): - - - add cx88-vbi.c to the patchlist. - -2004-02-24 19:00 kraxel - - * .cvsignore (tags: release-20040405), .snapshot: - - - delete .snapshot. - -2004-02-24 18:59 kraxel - - * .snapshot, bttv-cards.c: - - - one more pinnacle fix (don't load tvaudio). - -2004-02-24 00:55 kraxel - - * tuner.c: - - - kill type= insmod option step one: print a warning. - -2004-02-24 00:46 kraxel - - * bttv-cards.c: - - - fix bttv 10fc:d018 (I-O Data Co. GV-BCTV5/PCI) - Junichi Uekawa <dancer@netfort.gr.jp> - -2004-02-24 00:44 kraxel - - * bttv-cards.c: - - -add bttv 153b:ff23 (Terratec TValue Radio) - Tobias Diedrich <ranma@gmx.at> - -2004-02-23 20:02 kraxel - - * .cvsignore, Makefile (tags: release-20040405), bttv-driver.c: - - - comment bttv irq flags. - -2004-02-22 02:59 kraxel - - * audiochip.h (tags: release-20040405), bt832.c (tags: - release-20040405), bt832.h (tags: release-20040405), bt848.h - (tags: release-20040405), bttv-cards.c, bttv-driver.c, bttv-if.c - (tags: release-20040405), bttv.h (tags: release-20040405), - bttvp.h, dpl3518.c (tags: release-20040405), dpl3518.h (tags: - release-20040405), i2c-compat.h (tags: release-20040405), id.h - (tags: release-20040405), msp3400.c (tags: release-20040405), - msp3400.h (tags: release-20040405), plx9054.h (tags: - release-20040405), tda7432.c (tags: release-20040405), tda9875.c - (tags: release-20040405), tda9887.c (tags: release-20040405), - tda9887.h (tags: release-20040405), .snapshot, Make.config (tags: - release-20040405), Makefile, README (tags: release-20040405), - btcx-risc.c (tags: release-20040405), btcx-risc.h (tags: - release-20040405), bttv-gpio.c (tags: release-20040405), - bttv-i2c.c, bttv-risc.c (tags: release-20040405), bttv-vbi.c - (tags: release-20040405), cx88-cards.c, cx88-core.c (tags: - release-20040405), cx88-i2c.c, cx88-reg.h, cx88-tvaudio.c, - cx88-vbi.c, cx88-video.c, cx88.h, ir-common.c (tags: - release-20040405), ir-common.h, ir-kbd-gpio.c, ir-kbd-i2c.c, - rds-saa6588.c (tags: release-20040405), saa6752hs.c (tags: - release-20040405), saa6752hs.h (tags: release-20040405), - saa7134-cards.c, saa7134-core.c, saa7134-i2c.c (tags: - release-20040405), saa7134-input.c, saa7134-oss.c, saa7134-reg.h - (tags: release-20040405), saa7134-ts.c (tags: release-20040405), - saa7134-tvaudio.c, saa7134-vbi.c (tags: release-20040405), - saa7134-video.c, saa7134.h, tuner.c, tuner.h (tags: - release-20040405), tvaudio.c (tags: release-20040405), tvaudio.h - (tags: release-20040405), tvmixer.c (tags: release-20040405), - v4l1-compat.c, v4l2-common.c (tags: release-20040405), vbi (tags: - release-20040405), video-buf.c, video-buf.h, videodev.h (tags: - release-20040405), videodev2.h, .bp/2.4/20_v4l2 (tags: - release-20040405), .bp/2.4/30_video-buf (tags: release-20040405), - .bp/2.4/31_bt832 (tags: release-20040405), .bp/2.4/31_i2c (tags: - release-20040405), .bp/2.4/31_ir-input (tags: release-20040405), - .bp/2.4/31_tuner (tags: release-20040405), .bp/2.4/32_bttv (tags: - release-20040405), .bp/2.4/33_saa7134 (tags: release-20040405), - .bp/2.4/35_documentation (tags: release-20040405), - .bp/2.6/20_v4l2 (tags: release-20040405), .bp/2.6/30_video-buf - (tags: release-20040405), .bp/2.6/31_bt832 (tags: - release-20040405), .bp/2.6/31_i2c (tags: release-20040405), - .bp/2.6/31_ir-input (tags: release-20040405), .bp/2.6/31_tuner - (tags: release-20040405), .bp/2.6/32_bttv (tags: - release-20040405), .bp/2.6/32_bttv-input (tags: - release-20040405), .bp/2.6/33_saa7134 (tags: release-20040405), - .bp/2.6/34_cx88, .bp/2.6/35_documentation (tags: - release-20040405), doc/CARDLIST.bttv, doc/CARDLIST.saa7134, - doc/CARDLIST.tuner, doc/Cards (tags: release-20040405), - doc/MAKEDEV (tags: release-20040405), doc/README.bttv (tags: - release-20040405), doc/README.cx88, doc/README.saa7134 (tags: - release-20040405), doc/Sound-FAQ (tags: release-20040405), - doc/Tuners (tags: release-20040405), doc/README.ir (tags: - release-20040405), doc/insmod-options (tags: release-20040405), - doc/not-in-cx2388x-datasheet.txt (tags: release-20040405), - scripts/cardlist (tags: release-20040405), scripts/config.bttv - (tags: release-20040405), scripts/config.cx88 (tags: - release-20040405), scripts/config.saa7134 (tags: - release-20040405), scripts/modules.sh (tags: release-20040405), - scripts/release.sh, scripts/saa7134.pl, scripts/update (utags: - start): - - - import video4linux drivers. - -2004-02-22 02:59 kraxel - - * audiochip.h, bt832.c, bt832.h, bt848.h, bttv-cards.c, - bttv-driver.c, bttv-if.c, bttv.h, bttvp.h, dpl3518.c, dpl3518.h, - i2c-compat.h, id.h, msp3400.c, msp3400.h, plx9054.h, tda7432.c, - tda9875.c, tda9887.c, tda9887.h, .snapshot, Make.config, - Makefile, README, btcx-risc.c, btcx-risc.h, bttv-gpio.c, - bttv-i2c.c, bttv-risc.c, bttv-vbi.c, cx88-cards.c, cx88-core.c, - cx88-i2c.c, cx88-reg.h, cx88-tvaudio.c, cx88-vbi.c, cx88-video.c, - cx88.h, ir-common.c, ir-common.h, ir-kbd-gpio.c, ir-kbd-i2c.c, - rds-saa6588.c, saa6752hs.c, saa6752hs.h, saa7134-cards.c, - saa7134-core.c, saa7134-i2c.c, saa7134-input.c, saa7134-oss.c, - saa7134-reg.h, saa7134-ts.c, saa7134-tvaudio.c, saa7134-vbi.c, - saa7134-video.c, saa7134.h, tuner.c, tuner.h, tvaudio.c, - tvaudio.h, tvmixer.c, v4l1-compat.c, v4l2-common.c, vbi, - video-buf.c, video-buf.h, videodev.h, videodev2.h, - .bp/2.4/20_v4l2, .bp/2.4/30_video-buf, .bp/2.4/31_bt832, - .bp/2.4/31_i2c, .bp/2.4/31_ir-input, .bp/2.4/31_tuner, - .bp/2.4/32_bttv, .bp/2.4/33_saa7134, .bp/2.4/35_documentation, - .bp/2.6/20_v4l2, .bp/2.6/30_video-buf, .bp/2.6/31_bt832, - .bp/2.6/31_i2c, .bp/2.6/31_ir-input, .bp/2.6/31_tuner, - .bp/2.6/32_bttv, .bp/2.6/32_bttv-input, .bp/2.6/33_saa7134, - .bp/2.6/34_cx88, .bp/2.6/35_documentation, doc/CARDLIST.bttv, - doc/CARDLIST.saa7134, doc/CARDLIST.tuner, doc/Cards, doc/MAKEDEV, - doc/README.bttv, doc/README.cx88, doc/README.saa7134, - doc/Sound-FAQ, doc/Tuners, doc/README.ir, doc/insmod-options, - doc/not-in-cx2388x-datasheet.txt, scripts/cardlist, - scripts/config.bttv, scripts/config.cx88, scripts/config.saa7134, - scripts/modules.sh, scripts/release.sh, scripts/saa7134.pl, - scripts/update: - - Initial revision - diff --git a/v4l/scripts/prep_commit_msg.pl b/v4l/scripts/prep_commit_msg.pl index 239fb6092..9c4447313 100755 --- a/v4l/scripts/prep_commit_msg.pl +++ b/v4l/scripts/prep_commit_msg.pl @@ -1,41 +1,34 @@ #!/usr/bin/perl $f=shift; -open IN,"<$f"; +open IN,"hg diff|diffstat -p1 |"; my $n=2; my $from=""; my $first=""; my $changed=""; $out=""; while (<IN>) { - if (m/^[0-9]/) { - $n--; - next; - } - if ($n>0) { - s/[\t -]*//; - if (m/^\* (.*):/) { - $changed="#\t$1\n$changed"; - } else { - if ($first eq "") { - if ($_ eq "\n") { - next; - } - $first="$_"; - next; - } - if ($from eq "") { - if (m/Signed-off-by:/) { - $from = $_; - $from =~ s/Signed-off-by/From/; - $first="$first\n#\n# Then From line\n$from\n"; - } - } - $out="$out$_"; - } - } + $changed="$changed#$_"; } -printf "#Added/removed/changed files:\n%s" . - "# First line should be the subject, without Subject:\n%s" . - "# Then a detailed description followed by Signed-off-by: fields:\n%s", - $changed,$first,$out; + +my $user = $ENV{HGUSER}; + +if ( $user eq "" ) { + my $name = $ENV{CHANGE_LOG_NAME}; + my $email = $ENV{CHANGE_LOG_EMAIL_ADDRESS}; + + $user="$name <$email>"; +} + +$first= "# Please change bellow if you are not patch author\n#\nFrom: $user"; +$out= "# At the end Signed-off-by: fields by patch author and commiter, at least\n#\nSigned-off-by: $user"; +$from= "From: $user"; + +printf "#Added/removed/changed files:\n%s#\n" . + "# For better log display, please keep a blank line after subject, after from\n" . + "# and before signed-off-by\n" . + "# First line should be the subject, without Subject:\n#\n\n\n" . + "# Now, patch author (just the main one), on a From: field\n" . + "# Please change bellow if the commiter is not the patch author\n#\n%s\n\n" . + "# Then a detailed description:\n\n\n%s", + $changed,$from,$out; diff --git a/v4l/scripts/prepare-ChangeLog.pl b/v4l/scripts/prepare-ChangeLog.pl index c3b253246..370405dd9 100755 --- a/v4l/scripts/prepare-ChangeLog.pl +++ b/v4l/scripts/prepare-ChangeLog.pl @@ -17,6 +17,10 @@ # work with Mercurial # Updated at 29 August 2005 # +# Mauro Carvalho Chehab <mchehab@brturbo.com.br>: modified to +# just generate a changelog entry +# Updated at 01 January 2006 +## # (Someone put a license in here, like maybe GPL.) # # TODO: @@ -60,6 +64,8 @@ my $name = $ENV{CHANGE_LOG_NAME}; my $email_address = $ENV{CHANGE_LOG_EMAIL_ADDRESS}; my $login = $ENV{CHANGE_LOG_LOGIN}; +my $outfile = shift || ""; + if (!defined $name) { print STDERR "Please, define env var CHANGE_LOG_NAME.\n"; @@ -76,19 +82,6 @@ if (!defined $login) exit; } - - -# Read the old change log file. -# It's less efficient to read the whole thing into memory than it would be -# to read it while we prepend to it later, but I like doing this part first. -#print STDERR " Updating ChangeLog from hg repository.\n"; -#open ERRORS, "hg update ChangeLog |" or die "The hg update of ChangeLog failed: $OS_ERROR.\n"; -#print STDERR " $ARG" while <ERRORS>; -#close ERRORS; -open OLD_CHANGE_LOG, "v4l/ChangeLog" or die "Could not open ChangeLog file: $OS_ERROR.\n"; -my @old_change_log = <OLD_CHANGE_LOG>; -close OLD_CHANGE_LOG; - # For each file, build a list of modified lines. # Use line numbers from the "after" side of each diff. print STDERR " Running hg diff to find changes.\n"; @@ -97,11 +90,8 @@ my $file; open DIFF, "hg diff |" or die "The hg diff failed: $OS_ERROR.\n"; while (<DIFF>) { -#diff -r faaf1cf8404a video4linux/scripts/prepare-ChangeLog.pl -# and (/^\d+(,\d+)?[acd](\d+)(,(\d+))?/ or /^Binary files/) ) $file = $1 if /^diff -r .* (\S+)$/; - if (defined $file - and $file ne "v4l/ChangeLog" ) + if (defined $file) { push @{$changed_line_ranges{$file}}, [ $2, $4 || $2 ]; } @@ -173,7 +163,11 @@ my $date = sprintf "%d-%02d-%02d %02d:%02d", (gmtime $BASETIME)[2], # hour (gmtime $BASETIME)[1]; # min -open CHANGE_LOG, "> v4l/ChangeLog" or die "Could not write ChangeLog\n."; +if ($outfile eq "") { + open CHANGE_LOG, ">&STDOUT"; +} else { + open CHANGE_LOG, "> $outfile" or die "Could not write to $outfile\n."; +} print CHANGE_LOG "$date $login\n\n"; foreach my $file (sort keys %function_lists) { @@ -182,7 +176,6 @@ foreach my $file (sort keys %function_lists) print CHANGE_LOG "$lines\n"; } print CHANGE_LOG "\n\tSigned-off-by: $name <$email_address>\n"; -print CHANGE_LOG "\n", @old_change_log; close CHANGE_LOG; # Done. |