aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2008-12-19 15:59:40 +0100
committerTakashi Iwai <tiwai@suse.de>2008-12-19 15:59:40 +0100
commit9158923228822c08ed3116bfe21472261a05a725 (patch)
tree61b2df428338a55a8526e20e29d00b941911870f /sound
parent6030634ac3dc818d2eafa3ddf00abba88918b3bd (diff)
ALSA: hda - Fix unused variable warnings in patch_sigmatel.c
Fixed "unused varible" warnings in patch_sigmatel.c that have been introduced by the last changes. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_sigmatel.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c
index 6b7eeba656e..d9a89ced3c8 100644
--- a/sound/pci/hda/patch_sigmatel.c
+++ b/sound/pci/hda/patch_sigmatel.c
@@ -2972,8 +2972,8 @@ static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
"Front", "Surround", NULL /*CLFE*/, "Side"
};
hda_nid_t nid = 0;
- int i, err, num_dacs;
- unsigned int wid_caps, pincap;
+ int i, err;
+ unsigned int wid_caps;
for (i = 0; i < cfg->line_outs && spec->multiout.dac_nids[i]; i++) {
nid = spec->multiout.dac_nids[i];
@@ -4033,7 +4033,6 @@ static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid,
* "xxx as Output" mixer switch
*/
struct sigmatel_spec *spec = codec->spec;
- struct auto_pin_cfg *cfg = &spec->autocfg;
if (nid == spec->line_switch || nid == spec->mic_switch)
return;
}