Commit 997fb78e authored by Artem Makhutov's avatar Artem Makhutov Committed by Mauro Carvalho Chehab

V4L/DVB (11248): Remove debug output from stb6100_cfg.h

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: default avatarArtem Makhutov <artem@makhutov.org>
Acked-by: default avatarManu Abraham <abraham.manu@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 7d771ff0
...@@ -36,7 +36,6 @@ static int stb6100_get_frequency(struct dvb_frontend *fe, u32 *frequency) ...@@ -36,7 +36,6 @@ static int stb6100_get_frequency(struct dvb_frontend *fe, u32 *frequency)
return err; return err;
} }
*frequency = t_state.frequency; *frequency = t_state.frequency;
printk("%s: Frequency=%d\n", __func__, t_state.frequency);
} }
return 0; return 0;
} }
...@@ -59,7 +58,6 @@ static int stb6100_set_frequency(struct dvb_frontend *fe, u32 frequency) ...@@ -59,7 +58,6 @@ static int stb6100_set_frequency(struct dvb_frontend *fe, u32 frequency)
return err; return err;
} }
} }
printk("%s: Frequency=%d\n", __func__, t_state.frequency);
return 0; return 0;
} }
...@@ -81,7 +79,6 @@ static int stb6100_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) ...@@ -81,7 +79,6 @@ static int stb6100_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
} }
*bandwidth = t_state.bandwidth; *bandwidth = t_state.bandwidth;
} }
printk("%s: Bandwidth=%d\n", __func__, t_state.bandwidth);
return 0; return 0;
} }
...@@ -103,6 +100,5 @@ static int stb6100_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth) ...@@ -103,6 +100,5 @@ static int stb6100_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth)
return err; return err;
} }
} }
printk("%s: Bandwidth=%d\n", __func__, t_state.bandwidth);
return 0; return 0;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment