aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/ice1712/ice1724.c
diff options
context:
space:
mode:
authorClement Guedez <klem.dev@gmail.com>2007-01-08 04:48:41 -0500
committerJaroslav Kysela <perex@suse.cz>2007-02-09 03:02:50 -0500
commitf6cdab5f7ed356e8a259c1f00c7991f56c234643 (patch)
treec9a6311a40e27a188f716a05eee9bff93c95a771 /sound/pci/ice1712/ice1724.c
parent7b9470d88492d8be22d1f5307fe28642db9affe5 (diff)
[ALSA] Add support of the ESI Waveterminal 192M to the ice1724 ALSA driver
This patch adds the support of the ESI Waveterminal 192M soundcard to the ice1724 familly ALSA driver. It's a semi-professionnal soundcard for home studio : many I/O and a quality of sound is good, better than consumer cards, but less musical than professional cards. It use a Via Envy24ht chipset as ice1724 soundcard, Sigmatel stac9640 ADC/DAC for the analog I/O as Prodigy192, and Atmel ak4114 for S/PDIF as ESI Julia. Is working : the 8 analog outputs, the analog inputs 1&2, the mic input 1, the coaxial & optical digital outputs. Signed-off-by: Clement Guedez <klem.dev@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/ice1712/ice1724.c')
-rw-r--r--sound/pci/ice1712/ice1724.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/pci/ice1712/ice1724.c b/sound/pci/ice1712/ice1724.c
index 3e3a102e6c34..4566c0f789aa 100644
--- a/sound/pci/ice1712/ice1724.c
+++ b/sound/pci/ice1712/ice1724.c
@@ -50,7 +50,7 @@
50#include "prodigy192.h" 50#include "prodigy192.h"
51#include "juli.h" 51#include "juli.h"
52#include "phase.h" 52#include "phase.h"
53 53#include "wtm.h"
54 54
55MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>"); 55MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
56MODULE_DESCRIPTION("VIA ICEnsemble ICE1724/1720 (Envy24HT/PT)"); 56MODULE_DESCRIPTION("VIA ICEnsemble ICE1724/1720 (Envy24HT/PT)");
@@ -64,6 +64,7 @@ MODULE_SUPPORTED_DEVICE("{"
64 PRODIGY192_DEVICE_DESC 64 PRODIGY192_DEVICE_DESC
65 JULI_DEVICE_DESC 65 JULI_DEVICE_DESC
66 PHASE_DEVICE_DESC 66 PHASE_DEVICE_DESC
67 WTM_DEVICE_DESC
67 "{VIA,VT1720}," 68 "{VIA,VT1720},"
68 "{VIA,VT1724}," 69 "{VIA,VT1724},"
69 "{ICEnsemble,Generic ICE1724}," 70 "{ICEnsemble,Generic ICE1724},"
@@ -1958,6 +1959,7 @@ static struct snd_ice1712_card_info *card_tables[] __devinitdata = {
1958 snd_vt1724_prodigy192_cards, 1959 snd_vt1724_prodigy192_cards,
1959 snd_vt1724_juli_cards, 1960 snd_vt1724_juli_cards,
1960 snd_vt1724_phase_cards, 1961 snd_vt1724_phase_cards,
1962 snd_vt1724_wtm_cards,
1961 NULL, 1963 NULL,
1962}; 1964};
1963 1965