aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/hda_intel.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-06-07 06:26:56 -0400
committerTakashi Iwai <tiwai@suse.de>2011-06-07 06:26:56 -0400
commitb4a655e81d4d1d12abc92d29dfb7550e66a08799 (patch)
treeac8646cbcc6363fc9d33273b16995a4078062aea /sound/pci/hda/hda_intel.c
parenta810364a0424c297242c6c66071a42f7675a5568 (diff)
ALSA: hda - Judge playback stream from stream id in azx_via_get_position()
Instead of checking the azx_dev index with a fixed number (4), check the stream direction of the assigned substream. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_intel.c')
-rw-r--r--sound/pci/hda/hda_intel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index 45cd02f1ad88..5f2d05a8d0eb 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -1866,7 +1866,7 @@ static unsigned int azx_via_get_position(struct azx *chip,
1866 unsigned int fifo_size; 1866 unsigned int fifo_size;
1867 1867
1868 link_pos = azx_sd_readl(azx_dev, SD_LPIB); 1868 link_pos = azx_sd_readl(azx_dev, SD_LPIB);
1869 if (azx_dev->index >= 4) { 1869 if (azx_dev->substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1870 /* Playback, no problem using link position */ 1870 /* Playback, no problem using link position */
1871 return link_pos; 1871 return link_pos;
1872 } 1872 }