From: Colin Ian King Date: Fri, 27 Oct 2017 16:20:08 +0000 (-0400) Subject: media: radio-raremono: remove redundant initialization of freq X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=66b72cf1857b508d99f4eabea278e9ec366ee7fd;p=openwrt%2Fstaging%2Fblogic.git media: radio-raremono: remove redundant initialization of freq Variable freq is initialized to f->frequency however this value is never read and freq is later updated; hence the initialization is redundant and can be removed. Cleans up clang warning: drivers/media/radio/radio-raremono.c:257:6: warning: Value stored to 'freq' during its initialization is never read Signed-off-by: Colin Ian King Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/radio/radio-raremono.c b/drivers/media/radio/radio-raremono.c index 3c0a22a54113..70a2c86774ce 100644 --- a/drivers/media/radio/radio-raremono.c +++ b/drivers/media/radio/radio-raremono.c @@ -254,7 +254,7 @@ static int vidioc_s_frequency(struct file *file, void *priv, const struct v4l2_frequency *f) { struct raremono_device *radio = video_drvdata(file); - u32 freq = f->frequency; + u32 freq; unsigned band; if (f->tuner != 0 || f->type != V4L2_TUNER_RADIO)