diff options
author | Patrick Boettcher <pb@linuxtv.org> | 2006-08-06 11:40:58 +0200 |
---|---|---|
committer | Patrick Boettcher <pb@linuxtv.org> | 2006-08-06 11:40:58 +0200 |
commit | 487a380f105dca61c562573ded6b5748894fcd27 (patch) | |
tree | 56f478782cfde93bfa66e0d633230ad04af10b20 /linux/drivers/media/dvb/frontends/dib3000mc.c | |
parent | 5b742a05b517e61d7fa3ade7f1adbf8a4d16f04d (diff) | |
download | mediapointer-dvb-s2-487a380f105dca61c562573ded6b5748894fcd27.tar.gz mediapointer-dvb-s2-487a380f105dca61c562573ded6b5748894fcd27.tar.bz2 |
Remove debug-print from dib3000mc
From: Patrick Boettcher <pb@linuxtv.org>
Removed and commented a small debug function.
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/dib3000mc.c')
-rw-r--r-- | linux/drivers/media/dvb/frontends/dib3000mc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/linux/drivers/media/dvb/frontends/dib3000mc.c b/linux/drivers/media/dvb/frontends/dib3000mc.c index 0a1369cc9..3279768b7 100644 --- a/linux/drivers/media/dvb/frontends/dib3000mc.c +++ b/linux/drivers/media/dvb/frontends/dib3000mc.c @@ -69,6 +69,7 @@ static int dib3000mc_write_word(struct dib3000mc_state *state, u16 reg, u16 val) return i2c_transfer(state->i2c_adap, &msg, 1) != 1 ? -EREMOTEIO : 0; } +#if 0 static void dump_fep(struct dibx000_ofdm_channel *cd) { printk(KERN_DEBUG "DiB3000MC: "); @@ -91,7 +92,7 @@ static void dump_fep(struct dibx000_ofdm_channel *cd) printk("Code Rate LP %i/%i ", cd->vit_code_rate_lp, cd->vit_code_rate_lp + 1); printk("HRCH %i\n", cd->vit_hrch); } - +#endif static int dib3000mc_identify(struct dib3000mc_state *state) { @@ -738,8 +739,6 @@ static int dib3000mc_set_frontend(struct dvb_frontend* fe, INIT_OFDM_CHANNEL(&ch); FEP2DIB(fep,&ch); - dump_fep(&ch); - state->current_bandwidth = fep->u.ofdm.bandwidth; dib3000mc_set_bandwidth(fe, fep->u.ofdm.bandwidth); |