diff options
Diffstat (limited to 'v4l')
-rw-r--r-- | v4l/ChangeLog | 25 | ||||
-rw-r--r-- | v4l/Makefile | 1 |
2 files changed, 26 insertions, 0 deletions
diff --git a/v4l/ChangeLog b/v4l/ChangeLog index bf2528310..49877474d 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,3 +1,28 @@ +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: diff --git a/v4l/Makefile b/v4l/Makefile index 985bf1b39..f96c7de85 100644 --- a/v4l/Makefile +++ b/v4l/Makefile @@ -30,6 +30,7 @@ cx88xx-objs := cx88-cards.o cx88-core.o cx88-i2c.o cx88-tvaudio.o \ cx8800-objs := cx88-video.o cx88-vbi.o cx8802-objs := cx88-mpeg.o tuner-objs := tuner-core.o tuner-simple.o mt20xx.o tda8290.o tea5767.o +msp3400-objs := msp3400-driver.o msp3400-kthreads.o list-multi := bttv.o saa7134.o cx88xx.o cx8800.o cx88-alsa.o cx8802.o em28xx-objs := em28xx-video.o em28xx-i2c.o em28xx-cards.o em28xx-core.o \ em28xx-input.o |