diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-02-08 22:27:56 +0000 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-02-10 08:29:46 +0100 |
commit | 4dca80b4df0a7aa4f8865b0bd6f48962c5994b1e (patch) | |
tree | 029b9f05436332d9ae2d1aa1c9ba8f76728a40c4 /sound/pci | |
parent | 0cc629722221701a1b1030477c44dfbaca6c110d (diff) | |
download | linux-4dca80b4df0a7aa4f8865b0bd6f48962c5994b1e.tar.bz2 |
ALSA: hda: remove redundant assignment to variable timeout
Variable timeout is being assigned with the value 200 that is never
read, it is assigned a new value in a following do-loop. The assignment
is redundant and can be removed.
Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20200208222756.37707-1-colin.king@canonical.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/hda_controller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_controller.c b/sound/pci/hda/hda_controller.c index 2609e391ce54..9765652a73d7 100644 --- a/sound/pci/hda/hda_controller.c +++ b/sound/pci/hda/hda_controller.c @@ -373,7 +373,7 @@ static int azx_get_sync_time(ktime_t *device, u32 wallclk_ctr, wallclk_cycles; bool direction; u32 dma_select; - u32 timeout = 200; + u32 timeout; u32 retry_count = 0; runtime = substream->runtime; |