aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorJaroslav Kysela <perex@suse.cz>2004-05-17 19:33:36 +0200
committerJaroslav Kysela <perex@suse.cz>2004-05-17 19:33:36 +0200
commitfc1e9e0eb9f9595c08b9369b44c9bf6f3641273f (patch)
treec87bb6d767f3c1090ce4e194d115ce76465006ce /sound
parentae5f5d815dfee0bb149c22fc95507f20d293ea16 (diff)
downloadhistory-fc1e9e0eb9f9595c08b9369b44c9bf6f3641273f.tar.gz
ALSA CVS update - Takashi Iwai <tiwai@suse.de>
ICE1712 driver Added the support of Aureon 7.1-Universe.
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/ice1712/aureon.c8
-rw-r--r--sound/pci/ice1712/aureon.h4
2 files changed, 11 insertions, 1 deletions
diff --git a/sound/pci/ice1712/aureon.c b/sound/pci/ice1712/aureon.c
index f453d7574d0572..943c755f9a6b50 100644
--- a/sound/pci/ice1712/aureon.c
+++ b/sound/pci/ice1712/aureon.c
@@ -569,5 +569,13 @@ struct snd_ice1712_card_info snd_vt1724_aureon_cards[] __devinitdata = {
.eeprom_size = sizeof(aureon71_eeprom),
.eeprom_data = aureon71_eeprom,
},
+ {
+ .subvendor = VT1724_SUBDEVICE_AUREON71_UNIVERSE,
+ .name = "Terratec Aureon 7.1-Universe",
+ .chip_init = aureon_init,
+ .build_controls = aureon_add_controls,
+ .eeprom_size = sizeof(aureon71_eeprom),
+ .eeprom_data = aureon71_eeprom,
+ },
{ } /* terminator */
};
diff --git a/sound/pci/ice1712/aureon.h b/sound/pci/ice1712/aureon.h
index c7181425cc1f7c..8016b79c73b8c8 100644
--- a/sound/pci/ice1712/aureon.h
+++ b/sound/pci/ice1712/aureon.h
@@ -25,10 +25,12 @@
*/
#define AUREON_DEVICE_DESC "{Terratec,Aureon 5.1 Sky},"\
- "{Terratec,Aureon 7.1 Space},"
+ "{Terratec,Aureon 7.1 Space},"\
+ "{Terratec,Aureon 7.1 Universe},"
#define VT1724_SUBDEVICE_AUREON51_SKY 0x3b154711 /* Aureon 5.1 Sky */
#define VT1724_SUBDEVICE_AUREON71_SPACE 0x3b154511 /* Aureon 7.1 Space */
+#define VT1724_SUBDEVICE_AUREON71_UNIVERSE 0x3b155311 /* Aureon 7.1 Universe */
extern struct snd_ice1712_card_info snd_vt1724_aureon_cards[];