diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-26 09:45:53 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-26 09:45:53 +0000 |
commit | b02ab8e4ddec4578f3d68e296e76032accdd378b (patch) | |
tree | 37139c16c6bdcd0a3a8006dea8b22da29f1dbc09 | |
parent | 1fcaa2a07d4c815b9f8a8bfdd738b22a46760ede (diff) | |
download | mediapointer-dvb-s2-b02ab8e4ddec4578f3d68e296e76032accdd378b.tar.gz mediapointer-dvb-s2-b02ab8e4ddec4578f3d68e296e76032accdd378b.tar.bz2 |
Remove debug output from stb6100_cfg.h
From: Artem Makhutov <artem@makhutov.org>
This patch removes the debug output from stb6100_cfg.h as it is flooding
the syslog with tuning data during normal operation.
Signed-off-by: Artem Makhutov <artem@makhutov.org>
Acked-by: Manu Abraham <abraham.manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | linux/drivers/media/dvb/frontends/stb6100_cfg.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/linux/drivers/media/dvb/frontends/stb6100_cfg.h b/linux/drivers/media/dvb/frontends/stb6100_cfg.h index d3133405d..6314d18c7 100644 --- a/linux/drivers/media/dvb/frontends/stb6100_cfg.h +++ b/linux/drivers/media/dvb/frontends/stb6100_cfg.h @@ -36,7 +36,6 @@ static int stb6100_get_frequency(struct dvb_frontend *fe, u32 *frequency) return err; } *frequency = t_state.frequency; - printk("%s: Frequency=%d\n", __func__, t_state.frequency); } return 0; } @@ -59,7 +58,6 @@ static int stb6100_set_frequency(struct dvb_frontend *fe, u32 frequency) return err; } } - printk("%s: Frequency=%d\n", __func__, t_state.frequency); return 0; } @@ -81,7 +79,6 @@ static int stb6100_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) } *bandwidth = t_state.bandwidth; } - printk("%s: Bandwidth=%d\n", __func__, t_state.bandwidth); return 0; } @@ -103,6 +100,5 @@ static int stb6100_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth) return err; } } - printk("%s: Bandwidth=%d\n", __func__, t_state.bandwidth); return 0; } |