diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-03-23 11:35:39 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-03-23 11:36:55 -0400 |
commit | 14bafe3278e5da952a6586a5a9a9d286566049ed (patch) | |
tree | 48f83a4d896c52ba914abe3728ece80a26dc2ff7 /sound/pci/hda/hda_codec.c | |
parent | a23b688f4d5c2490a50677b30011a677d8edf3d0 (diff) |
ALSA: hda - Use cached calls to get widget caps and pin caps
Replace with the standard function calls to use caches for reading
the widget caps and pin caps.
hda_proc.c is still using the direct verbs to get raw values as
much as possible.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_codec.c')
-rw-r--r-- | sound/pci/hda/hda_codec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index 0f70d2d102e0..a4e5e5952115 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c | |||
@@ -2321,8 +2321,7 @@ static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg, | |||
2321 | * don't power down the widget if it controls | 2321 | * don't power down the widget if it controls |
2322 | * eapd and EAPD_BTLENABLE is set. | 2322 | * eapd and EAPD_BTLENABLE is set. |
2323 | */ | 2323 | */ |
2324 | pincap = snd_hda_param_read(codec, nid, | 2324 | pincap = snd_hda_query_pin_caps(codec, nid); |
2325 | AC_PAR_PIN_CAP); | ||
2326 | if (pincap & AC_PINCAP_EAPD) { | 2325 | if (pincap & AC_PINCAP_EAPD) { |
2327 | int eapd = snd_hda_codec_read(codec, | 2326 | int eapd = snd_hda_codec_read(codec, |
2328 | nid, 0, | 2327 | nid, 0, |