ASoC: tas2781: Remove redundant initialization of pointer 'data'
authorColin Ian King <colin.i.king@gmail.com>
Fri, 16 Feb 2024 14:22:19 +0000 (14:22 +0000)
committerMark Brown <broonie@kernel.org>
Mon, 19 Feb 2024 17:02:17 +0000 (17:02 +0000)
The pointer 'data' being initialized with a value that is never read, it
is being re-assigned inside a while-loop. The initialization is redundant
and can be removed.

Cleans up clang scan build warning
sound/soc/codecs/tas2781-fmwlib.c:1534:17: warning: Value stored to
'data' during its initialization is never read [deadcode.DeadStores]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://msgid.link/r/20240216142219.2109050-1-colin.i.king@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/tas2781-fmwlib.c

index 85e14ff61769a475e50dc72f80b9d4825bfcc5ee..45760fe195237435f276655f84019908aa4b4dfe 100644 (file)
@@ -1531,7 +1531,7 @@ static int tasdev_load_blk(struct tasdevice_priv *tas_priv,
        unsigned int sleep_time;
        unsigned int len;
        unsigned int nr_cmds;
-       unsigned char *data = block->data;
+       unsigned char *data;
        unsigned char crc_chksum = 0;
        unsigned char offset;
        unsigned char book;