aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/radio
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/radio')
-rw-r--r--drivers/media/radio/radio-sf16fmi.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/drivers/media/radio/radio-sf16fmi.c b/drivers/media/radio/radio-sf16fmi.c
index 80beda7781bc..9cd0338a3d2b 100644
--- a/drivers/media/radio/radio-sf16fmi.c
+++ b/drivers/media/radio/radio-sf16fmi.c
@@ -55,8 +55,8 @@ static struct fmi fmi_card;
55static struct pnp_dev *dev; 55static struct pnp_dev *dev;
56bool pnp_attached; 56bool pnp_attached;
57 57
58#define RSF16_MINFREQ (87 * 16000) 58#define RSF16_MINFREQ (87U * 16000)
59#define RSF16_MAXFREQ (108 * 16000) 59#define RSF16_MAXFREQ (108U * 16000)
60 60
61#define FMI_BIT_TUN_CE (1 << 0) 61#define FMI_BIT_TUN_CE (1 << 0)
62#define FMI_BIT_TUN_CLK (1 << 1) 62#define FMI_BIT_TUN_CLK (1 << 1)
@@ -155,15 +155,14 @@ static int vidioc_s_frequency(struct file *file, void *priv,
155 const struct v4l2_frequency *f) 155 const struct v4l2_frequency *f)
156{ 156{
157 struct fmi *fmi = video_drvdata(file); 157 struct fmi *fmi = video_drvdata(file);
158 unsigned freq = f->frequency;
158 159
159 if (f->tuner != 0 || f->type != V4L2_TUNER_RADIO) 160 if (f->tuner != 0 || f->type != V4L2_TUNER_RADIO)
160 return -EINVAL; 161 return -EINVAL;
161 if (f->frequency < RSF16_MINFREQ || 162 clamp(freq, RSF16_MINFREQ, RSF16_MAXFREQ);
162 f->frequency > RSF16_MAXFREQ)
163 return -EINVAL;
164 /* rounding in steps of 800 to match the freq 163 /* rounding in steps of 800 to match the freq
165 that will be used */ 164 that will be used */
166 lm7000_set_freq((f->frequency / 800) * 800, fmi, fmi_set_pins); 165 lm7000_set_freq((freq / 800) * 800, fmi, fmi_set_pins);
167 return 0; 166 return 0;
168} 167}
169 168