diff options
author | Colin Ian King <[email protected]> | 2024-02-21 11:38:09 +0000 |
---|---|---|
committer | Takashi Iwai <[email protected]> | 2024-02-22 10:04:40 +0100 |
commit | 372709508b847e7df3bbe2c52ab4c783bbce738f (patch) | |
tree | dc82eaaeb8738669ec43066aa4dceb4f98d578fe | |
parent | 3fdecc7d9aca8a824ce3be9d20f6366d132579fc (diff) |
ALSA: echoaudio: remove redundant assignment to variable clock
The variable clock is being assigned a value that is never read,
it is being re-assigned a new value in every case in the following
switch statement. The assignment is redundant and can be removed.
Cleans up clang scan build warning:
sound/pci/echoaudio/echoaudio_3g.c:277:2: warning: Value stored
to 'clock' is never read [deadcode.DeadStores]
Signed-off-by: Colin Ian King <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Takashi Iwai <[email protected]>
-rw-r--r-- | sound/pci/echoaudio/echoaudio_3g.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/pci/echoaudio/echoaudio_3g.c b/sound/pci/echoaudio/echoaudio_3g.c index cc3c79387194..18b4d4b4d38d 100644 --- a/sound/pci/echoaudio/echoaudio_3g.c +++ b/sound/pci/echoaudio/echoaudio_3g.c @@ -274,7 +274,6 @@ static int set_sample_rate(struct echoaudio *chip, u32 rate) chip->digital_mode == DIGITAL_MODE_ADAT)) return -EINVAL; - clock = 0; control_reg = le32_to_cpu(chip->comm_page->control_register); control_reg &= E3G_CLOCK_CLEAR_MASK; |