diff options
author | Nickolay V. Shmyrev <devnull@localhost> | 2005-08-17 19:42:11 +0000 |
---|---|---|
committer | Nickolay V. Shmyrev <devnull@localhost> | 2005-08-17 19:42:11 +0000 |
commit | cad4a4110faf2672fc6dec4d5ca6c09ccac2e3e2 (patch) | |
tree | 1603ed1bbfbf74e7dd75c1d8b9a75642dba7d713 /linux/drivers/media/video/tuner-simple.c | |
parent | 5e49ebffdf77e2a1052b3c84d175e707749f532a (diff) | |
download | mediapointer-dvb-s2-cad4a4110faf2672fc6dec4d5ca6c09ccac2e3e2.tar.gz mediapointer-dvb-s2-cad4a4110faf2672fc6dec4d5ca6c09ccac2e3e2.tar.bz2 |
* 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.
Diffstat (limited to 'linux/drivers/media/video/tuner-simple.c')
-rw-r--r-- | linux/drivers/media/video/tuner-simple.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linux/drivers/media/video/tuner-simple.c b/linux/drivers/media/video/tuner-simple.c index 0c4e72dfe..41ba7ad46 100644 --- a/linux/drivers/media/video/tuner-simple.c +++ b/linux/drivers/media/video/tuner-simple.c @@ -1,5 +1,5 @@ /* - * $Id: tuner-simple.c,v 1.44 2005/08/04 04:01:28 nsh Exp $ + * $Id: tuner-simple.c,v 1.45 2005/08/17 19:42:11 nsh Exp $ * * i2c tv tuner chip device driver * controls all those simple 4-control-bytes style tuners. @@ -515,6 +515,7 @@ int default_tuner_init(struct i2c_client *c) t->radio_freq = default_set_radio_freq; t->has_signal = tuner_signal; t->is_stereo = tuner_stereo; + t->standby = NULL; return 0; } |