mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
ASoC: tas2781: Remove redundant initialization of pointer 'data'
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>
This commit is contained in:
parent
a3d543b9e6
commit
e480c0991d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user