Browse Source

ALSA: hda/ca0132 - Fix another smatch warning

sound/pci/hda/patch_ca0132.c:1781 dspxfr_one_seg() info: why not
propagate 'status' from dsp_dma_stop() instead of (-5)?

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Takashi Iwai 12 years ago
parent
commit
425a7880e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      sound/pci/hda/patch_ca0132.c

+ 1 - 1
sound/pci/hda/patch_ca0132.c

@@ -2325,7 +2325,7 @@ static int dspxfr_one_seg(struct hda_codec *codec,
 		if (!comm_dma_setup_done) {
 			status = dsp_dma_stop(codec, dma_chan, ovly);
 			if (status < 0)
-				return -EIO;
+				return status;
 			status = dsp_dma_setup_common(codec, chip_addx,
 						dma_chan, port_map_mask, ovly);
 			if (status < 0)