summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2017-10-15 17:16:45 -0400
committerTakashi Iwai <tiwai@suse.de>2017-10-16 07:36:24 -0400
commit40ddfe659a19baa2ccc73899a150ca03373c44aa (patch)
tree0c42642e14bbfb696e5d44531d888ea52fa559ea
parentde168981384097f810d3ecfb4bcfa5019cc7c160 (diff)
ALSA: ens137x: remove redundant variable result
Variable result is being assigned a value from a calculation however the variable is never read, so this redundant variable can be removed. Cleans up clang warning: Value stored to 'result' is never read Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--sound/pci/ens1370.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/pci/ens1370.c b/sound/pci/ens1370.c
index d4cd6451fdca..39f79a6b5283 100644
--- a/sound/pci/ens1370.c
+++ b/sound/pci/ens1370.c
@@ -732,7 +732,7 @@ static void snd_es1371_codec_wait(struct snd_ac97 *ac97)
732 732
733static void snd_es1371_adc_rate(struct ensoniq * ensoniq, unsigned int rate) 733static void snd_es1371_adc_rate(struct ensoniq * ensoniq, unsigned int rate)
734{ 734{
735 unsigned int n, truncm, freq, result; 735 unsigned int n, truncm, freq;
736 736
737 mutex_lock(&ensoniq->src_mutex); 737 mutex_lock(&ensoniq->src_mutex);
738 n = rate / 3000; 738 n = rate / 3000;
@@ -740,7 +740,6 @@ static void snd_es1371_adc_rate(struct ensoniq * ensoniq, unsigned int rate)
740 n--; 740 n--;
741 truncm = (21 * n - 1) | 1; 741 truncm = (21 * n - 1) | 1;
742 freq = ((48000UL << 15) / rate) * n; 742 freq = ((48000UL << 15) / rate) * n;
743 result = (48000UL << 15) / (freq / n);
744 if (rate >= 24000) { 743 if (rate >= 24000) {
745 if (truncm > 239) 744 if (truncm > 239)
746 truncm = 239; 745 truncm = 239;