diff options
author | Michael Krufky <devnull@localhost> | 2005-11-02 00:15:56 +0000 |
---|---|---|
committer | Michael Krufky <devnull@localhost> | 2005-11-02 00:15:56 +0000 |
commit | 6d5257973532974ab5964e4af09574c7d8b198b8 (patch) | |
tree | 5d7d1eabe1837cad97a2d5793f8d3153ff9ce891 /linux | |
parent | ee0b2db7b12b82848a903d27457be297099c6d0a (diff) | |
download | mediapointer-dvb-s2-6d5257973532974ab5964e4af09574c7d8b198b8.tar.gz mediapointer-dvb-s2-6d5257973532974ab5964e4af09574c7d8b198b8.tar.bz2 |
- removed trailing whitespace.
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/video/tda8290.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/linux/drivers/media/video/tda8290.c b/linux/drivers/media/video/tda8290.c index da3274a51..57d0a854a 100644 --- a/linux/drivers/media/video/tda8290.c +++ b/linux/drivers/media/video/tda8290.c @@ -1,5 +1,5 @@ /* - $Id: tda8290.c,v 1.27 2005/11/01 21:07:15 hhackmann Exp $ + $Id: tda8290.c,v 1.28 2005/11/02 00:15:56 mkrufky Exp $ i2c tv tuner chip device driver controls the philips tda8290+75 tuner chip combo. @@ -353,7 +353,7 @@ static int tda8290_tune(struct i2c_client *c, u16 ifc, unsigned int freq) tuner_dbg("tda8290 not locked, no signal?\n"); if ((agc_stat > 115) || (!(pll_stat & 0x80) && (adc_sat < 20))) { tuner_dbg("adjust gain, step 1. Agc: %d, ADC stat: %d, lock: %d\n", - agc_stat, adc_sat, pll_stat & 0x80); + agc_stat, adc_sat, pll_stat & 0x80); i2c_master_send(c, gainset_2, 2); msleep(100); i2c_master_send(c, &addr_agc_stat, 1); @@ -361,8 +361,8 @@ static int tda8290_tune(struct i2c_client *c, u16 ifc, unsigned int freq) i2c_master_send(c, &addr_pll_stat, 1); i2c_master_recv(c, &pll_stat, 1); if ((agc_stat > 115) || !(pll_stat & 0x80)) { - tuner_dbg("adjust gain, step 2. Agc: %d, lock: %d\n", - agc_stat, pll_stat & 0x80); + tuner_dbg("adjust gain, step 2. Agc: %d, lock: %d\n", + agc_stat, pll_stat & 0x80); if (t->tda827x_ver != 0) tda827xa_agcf(c); else @@ -422,23 +422,23 @@ static void set_audio(struct tuner *t) } else if (t->std & V4L2_STD_B) { t->sgIF = 108; t->tda8290_easy_mode = 0x02; - mode = "B"; + mode = "B"; } else if (t->std & V4L2_STD_GH) { t->sgIF = 124; t->tda8290_easy_mode = 0x04; - mode = "GH"; + mode = "GH"; } else if (t->std & V4L2_STD_PAL_I) { t->sgIF = 124; t->tda8290_easy_mode = 0x08; - mode = "I"; + mode = "I"; } else if (t->std & V4L2_STD_DK) { t->sgIF = 124; t->tda8290_easy_mode = 0x10; - mode = "DK"; + mode = "DK"; } else if (t->std & V4L2_STD_SECAM_L) { t->sgIF = 124; t->tda8290_easy_mode = 0x20; - mode = "L"; + mode = "L"; } tuner_dbg("setting tda8290 to system %s\n", mode); } |