Message ID | 20090326094553.GA12847@titan.makhutov-it.de (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
--- linux.old/drivers/media/dvb/frontends/stb6100_cfg.h 2009-03-26 10:28:57.000000000 +0100 +++ linux/drivers/media/dvb/frontends/stb6100_cfg.h 2009-03-26 10:29:52.000000000 +0100 @@ -36,7 +36,6 @@ return err; } *frequency = t_state.frequency; - printk("%s: Frequency=%d\n", __func__, t_state.frequency); } return 0; } @@ -59,7 +58,6 @@ return err; } } - printk("%s: Frequency=%d\n", __func__, t_state.frequency); return 0; } @@ -81,7 +79,6 @@ } *bandwidth = t_state.bandwidth; } - printk("%s: Bandwidth=%d\n", __func__, t_state.bandwidth); return 0; } @@ -103,6 +100,5 @@ return err; } } - printk("%s: Bandwidth=%d\n", __func__, t_state.bandwidth); return 0; }
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>