diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-10-17 12:53:21 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-10-17 14:14:04 +0200 |
commit | 067483577bce79e11afc41a29f38d43840e623de (patch) | |
tree | 511c98c9cd8f650b162bb47dd70b6e6812e4a400 /sound/pci/au88x0 | |
parent | a6162afa7135548973ba633c7795db9648fbd4a2 (diff) | |
download | linux-067483577bce79e11afc41a29f38d43840e623de.tar.bz2 |
ALSA: au88x0: remove redundant assignment of variable i
The assignment to variable i is redundant as it is never read
because it is updated a little later on. Remove this assignment.
Cleans up clang warning: Value stored to 'i' is never read
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/au88x0')
-rw-r--r-- | sound/pci/au88x0/au88x0_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/au88x0/au88x0_core.c b/sound/pci/au88x0/au88x0_core.c index c308a4f70550..4083c8b01619 100644 --- a/sound/pci/au88x0/au88x0_core.c +++ b/sound/pci/au88x0/au88x0_core.c @@ -2628,7 +2628,7 @@ static void vortex_spdif_init(vortex_t * vortex, int spdif_sr, int spdif_mode) else edi = 0x1ffff; } else { - i = edi = 0x800; + edi = 0x800; } /* this_04 and this_08 are the CASp4Src's (samplerate converters) */ vortex_src_setupchannel(vortex, this_04, edi, 0, 1, |