diff options
author | Wu Fengguang <fengguang.wu@intel.com> | 2009-08-24 09:50:46 +0800 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-08-24 09:42:48 +0200 |
commit | fd72d008465d45db63d7f8931eea6a04e05916d6 (patch) | |
tree | 8daba43d08b3162e028799d06f0c487e301a1ab5 /sound/pci/hda/patch_atihdmi.c | |
parent | 454e134d0e9e38421830f26426c66f37a6d39465 (diff) | |
download | op-kernel-dev-fd72d008465d45db63d7f8931eea6a04e05916d6.zip op-kernel-dev-fd72d008465d45db63d7f8931eea6a04e05916d6.tar.gz |
ALSA: hda: move open coded tricks into get_wcaps_channels()
Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_atihdmi.c')
-rw-r--r-- | sound/pci/hda/patch_atihdmi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/pci/hda/patch_atihdmi.c b/sound/pci/hda/patch_atihdmi.c index 233e477..fb684f0 100644 --- a/sound/pci/hda/patch_atihdmi.c +++ b/sound/pci/hda/patch_atihdmi.c @@ -141,8 +141,7 @@ static int atihdmi_build_pcms(struct hda_codec *codec) /* FIXME: we must check ELD and change the PCM parameters dynamically */ chans = get_wcaps(codec, CVT_NID); - chans = (chans & AC_WCAP_CHAN_CNT_EXT) >> 13; - chans = ((chans << 1) | 1) + 1; + chans = get_wcaps_channels(chans); info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = chans; return 0; |