diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-07-20 13:14:17 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2009-07-20 13:14:17 +0200 |
commit | 41e2b46981cc531fe61b04a83a5e2bc4171c9257 (patch) | |
tree | 74b08dcd6ea42101df0d2f0721668eef360d7f1d /linux/drivers/media/video/bt8xx/bttv.h | |
parent | 20d8713a89d5f49511495e944294806642ec6a13 (diff) | |
download | mediapointer-dvb-s2-41e2b46981cc531fe61b04a83a5e2bc4171c9257.tar.gz mediapointer-dvb-s2-41e2b46981cc531fe61b04a83a5e2bc4171c9257.tar.bz2 |
bttv: fix regression: tvaudio must be loaded before tuner
From: Hans Verkuil <hverkuil@xs4all.nl>
Both tvaudio and the tuner share i2c address 0x42. The tvaudio module can
check whether it really is a tda9840, but the tuner can't. So the tvaudio
module must be loaded before the tuner module. This was also the case for
2.6.29, but the order was swapped in 2.6.30.
Thanks to Krzysztof Grygiencz for reporting and testing this.
Priority: high
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video/bt8xx/bttv.h')
-rw-r--r-- | linux/drivers/media/video/bt8xx/bttv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux/drivers/media/video/bt8xx/bttv.h b/linux/drivers/media/video/bt8xx/bttv.h index 6b7b62bd4..a0cb26b4a 100644 --- a/linux/drivers/media/video/bt8xx/bttv.h +++ b/linux/drivers/media/video/bt8xx/bttv.h @@ -284,6 +284,7 @@ extern struct tvcard bttv_tvcards[]; extern void bttv_idcard(struct bttv *btv); extern void bttv_init_card1(struct bttv *btv); extern void bttv_init_card2(struct bttv *btv); +extern void bttv_init_tuner(struct bttv *btv); /* card-specific funtions */ extern void tea5757_set_freq(struct bttv *btv, unsigned short freq); |