diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-05-24 13:16:56 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-05-29 10:14:38 +0200 |
commit | b9cce37411edd668ae5dbc16aa9653800c8e0744 (patch) | |
tree | 3878b55ef9a607c672b600ebdcfa0fe50fc259dc /sound/pci/ice1712 | |
parent | d6e33796b5857adf418b07f8f7ce65f46163b2f1 (diff) | |
download | kernel_samsung_smdk4412-b9cce37411edd668ae5dbc16aa9653800c8e0744.zip kernel_samsung_smdk4412-b9cce37411edd668ae5dbc16aa9653800c8e0744.tar.gz kernel_samsung_smdk4412-b9cce37411edd668ae5dbc16aa9653800c8e0744.tar.bz2 |
[ALSA] Add Shuttle SN25P support
ICE1712 driver
Added the support for Shuttle SN25P.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ice1712')
-rw-r--r-- | sound/pci/ice1712/vt1720_mobo.c | 9 | ||||
-rw-r--r-- | sound/pci/ice1712/vt1720_mobo.h | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/sound/pci/ice1712/vt1720_mobo.c b/sound/pci/ice1712/vt1720_mobo.c index 3bd9262..ab61e38 100644 --- a/sound/pci/ice1712/vt1720_mobo.c +++ b/sound/pci/ice1712/vt1720_mobo.c @@ -110,6 +110,15 @@ struct snd_ice1712_card_info snd_vt1720_mobo_cards[] __devinitdata = { .eeprom_size = sizeof(k8x800_eeprom), .eeprom_data = k8x800_eeprom, }, + { + .subvendor = VT1720_SUBDEVICE_SN25P, + .name = "Shuttle SN25P", + /* identical with k8x800 */ + .chip_init = k8x800_init, + .build_controls = k8x800_add_controls, + .eeprom_size = sizeof(k8x800_eeprom), + .eeprom_data = k8x800_eeprom, + }, { } /* terminator */ }; diff --git a/sound/pci/ice1712/vt1720_mobo.h b/sound/pci/ice1712/vt1720_mobo.h index f949eb8..e0b613c 100644 --- a/sound/pci/ice1712/vt1720_mobo.h +++ b/sound/pci/ice1712/vt1720_mobo.h @@ -33,6 +33,7 @@ #define VT1720_SUBDEVICE_ZNF3_150 0x0f2741f6 #define VT1720_SUBDEVICE_ZNF3_250 0x0f2745f6 #define VT1720_SUBDEVICE_9CJS 0x0f272327 +#define VT1720_SUBDEVICE_SN25P 0x97123650 extern struct snd_ice1712_card_info snd_vt1720_mobo_cards[]; |