aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2009-11-25 12:30:53 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-12-05 15:42:06 -0500
commitb8415f5314ce0b190b5963d2180441cd862efa26 (patch)
tree17796500922d71c65e844e4b9a401632c733cddc
parenta7925eb3e4b5cf9f223cd30bbd3e93b9daa02816 (diff)
V4L/DVB (13480): atbm8830: fix compile warning
Fix this trivial compile warning: v4l/atbm8830.c:164: warning: 'set_agc_config' defined but not used Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/dvb/frontends/atbm8830.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/drivers/media/dvb/frontends/atbm8830.c b/drivers/media/dvb/frontends/atbm8830.c
index 87fb3c23b80f..d77684893d99 100644
--- a/drivers/media/dvb/frontends/atbm8830.c
+++ b/drivers/media/dvb/frontends/atbm8830.c
@@ -114,7 +114,7 @@ static int set_osc_freq(struct atbm_state *priv, u32 freq /*in kHz*/)
114 114
115static int set_if_freq(struct atbm_state *priv, u32 freq /*in kHz*/) 115static int set_if_freq(struct atbm_state *priv, u32 freq /*in kHz*/)
116{ 116{
117 117
118 u32 fs = priv->config->osc_clk_freq; 118 u32 fs = priv->config->osc_clk_freq;
119 double t; 119 double t;
120 u32 val; 120 u32 val;
@@ -161,15 +161,6 @@ static int is_locked(struct atbm_state *priv, u8 *locked)
161 return 0; 161 return 0;
162} 162}
163 163
164static int set_agc_config(struct atbm_state *priv,
165 u8 min, u8 max, u8 hold_loop)
166{
167 atbm8830_write_reg(priv, REG_AGC_MIN, min);
168 atbm8830_write_reg(priv, REG_AGC_MAX, max);
169 atbm8830_write_reg(priv, REG_AGC_HOLD_LOOP, hold_loop);
170
171 return 0;
172}
173 164
174static int set_static_channel_mode(struct atbm_state *priv) 165static int set_static_channel_mode(struct atbm_state *priv)
175{ 166{