summaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_via.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-06-19 16:27:53 +0200
committerTakashi Iwai <tiwai@suse.de>2011-06-20 16:24:09 +0200
commit0fe0adf82f95ed5ce5a75512b281f6cbc89cefa1 (patch)
tree3e7ce4f06821ced20b82fa87e263c216279145bd /sound/pci/hda/patch_via.c
parentece8d0431fde78ea2c0a5be2884bcbc4940ae7c5 (diff)
downloadlinux-0fe0adf82f95ed5ce5a75512b281f6cbc89cefa1.tar.bz2
ALSA: hda - Replace with standard consts in patch_via.c
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_via.c')
-rw-r--r--sound/pci/hda/patch_via.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/sound/pci/hda/patch_via.c b/sound/pci/hda/patch_via.c
index fa5ed36d69e5..ae90b95eab3a 100644
--- a/sound/pci/hda/patch_via.c
+++ b/sound/pci/hda/patch_via.c
@@ -263,13 +263,6 @@ enum {
VIA_CTL_WIDGET_BIND_PIN_MUTE,
};
-enum {
- AUTO_SEQ_FRONT = 0,
- AUTO_SEQ_SURROUND,
- AUTO_SEQ_CENLFE,
- AUTO_SEQ_SIDE
-};
-
static void analog_low_current_mode(struct hda_codec *codec, int stream_idle);
static int is_aa_path_mute(struct hda_codec *codec);
@@ -528,7 +521,7 @@ static void via_auto_init_multi_out(struct hda_codec *codec)
struct via_spec *spec = codec->spec;
int i;
- for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
+ for (i = 0; i <= HDA_SIDE; i++) {
hda_nid_t nid = spec->autocfg.line_out_pins[i];
if (nid)
via_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
@@ -1839,7 +1832,7 @@ static int via_auto_create_multi_out_ctls(struct hda_codec *codec)
dac = spec->multiout.dac_nids[i];
if (!pin || !dac)
continue;
- if (i == AUTO_SEQ_CENLFE) {
+ if (i == HDA_CLFE) {
err = create_ch_ctls(codec, "Center", pin, dac, 1);
if (err < 0)
return err;