ALSA: hda - Add missing ALC680_* definitions

Also update the documentation.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Takashi Iwai 2010-06-23 17:51:26 +02:00
parent d1eb57f47b
commit d4a86d8194
2 changed files with 14 additions and 1 deletions

View File

@ -114,6 +114,11 @@ ALC662/663/272
samsung-nc10 Samsung NC10 mini notebook samsung-nc10 Samsung NC10 mini notebook
auto auto-config reading BIOS (default) auto auto-config reading BIOS (default)
ALC680
======
base Base model (ASUS NX90)
auto auto-config reading BIOS (default)
ALC882/883/885/888/889 ALC882/883/885/888/889
====================== ======================
3stack-dig 3-jack with SPDIF I/O 3stack-dig 3-jack with SPDIF I/O

View File

@ -256,6 +256,13 @@ enum {
ALC882_MODEL_LAST, ALC882_MODEL_LAST,
}; };
/* ALC680 models */
enum {
ALC680_BASE,
ALC680_AUTO,
ALC680_MODEL_LAST,
};
/* for GPIO Poll */ /* for GPIO Poll */
#define GPIO_MASK 0x03 #define GPIO_MASK 0x03
@ -18997,7 +19004,8 @@ static void alc680_auto_init(struct hda_codec *codec)
* configuration and preset * configuration and preset
*/ */
static const char *alc680_models[ALC680_MODEL_LAST] = { static const char *alc680_models[ALC680_MODEL_LAST] = {
[ALC680_BASE] = "alc680_base", [ALC680_BASE] = "base",
[ALC680_AUTO] = "auto",
}; };
static struct snd_pci_quirk alc680_cfg_tbl[] = { static struct snd_pci_quirk alc680_cfg_tbl[] = {