media: tda18271: remove redundant assignment to variable bcal
authorColin Ian King <colin.i.king@gmail.com>
Mon, 5 Feb 2024 21:49:25 +0000 (21:49 +0000)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Fri, 16 Feb 2024 10:46:32 +0000 (11:46 +0100)
The variable bcal is being initialized with a value that is never
read, it is being re-assigned in both paths of an if statement near
the end of the function. The initialization is redundant and can
be removed.

Cleans up clang scan build warning:
drivers/media/tuners/tda18271-fe.c:473:2: warning: Value stored
to 'bcal' is never read [deadcode.DeadStores]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/tuners/tda18271-fe.c

index f0371d004b36dcf3b3f2fc3b434d235cf632e2b8..a7e721baaa997f24e20e152dff8c5494fee839e5 100644 (file)
@@ -470,7 +470,6 @@ static int tda18271_powerscan(struct dvb_frontend *fe,
        /* algorithm initialization */
        sgn = 1;
        *freq_out = *freq_in;
-       bcal = 0;
        count = 0;
        wait = false;