Skip to content

Commit

Permalink
V4L/DVB (11248): Remove debug output from stb6100_cfg.h
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Artem Makhutov authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent 7d771ff commit 997fb78
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions drivers/media/dvb/frontends/stb6100_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}

Expand All @@ -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;
}

Expand All @@ -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;
}

0 comments on commit 997fb78

Please sign in to comment.