diff options
author | Krzysztof Helt <krzysztof.h1@wp.pl> | 2009-11-22 17:26:34 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-11-23 09:41:55 +0100 |
commit | 9dc9120c774e1d7e3d939542200bd44829c0059d (patch) | |
tree | bea8fba16b39633911bdd99606e318a24f9a0ef5 /include/sound/aci.h | |
parent | 9aeba6297151abcb1b34f3237e4c028aae500ce4 (diff) | |
download | linux-9dc9120c774e1d7e3d939542200bd44829c0059d.tar.gz linux-9dc9120c774e1d7e3d939542200bd44829c0059d.tar.bz2 linux-9dc9120c774e1d7e3d939542200bd44829c0059d.zip |
ALSA: opti-miro: expose ACI mixer to outside drivers
The ACI mixer is used to control the radio FM module
installed on the Miro PCM20 sound card. Expose ACI mixer
outside the sound card driver.
Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/sound/aci.h')
-rw-r--r-- | include/sound/aci.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/sound/aci.h b/include/sound/aci.h index bb796d06d0f2..ee639d355ef0 100644 --- a/include/sound/aci.h +++ b/include/sound/aci.h @@ -70,4 +70,21 @@ #define ACI_SET_EQ6 0x45 #define ACI_SET_EQ7 0x46 /* ... to Treble */ +struct snd_miro_aci { + unsigned long aci_port; + int aci_vendor; + int aci_product; + int aci_version; + int aci_amp; + int aci_preamp; + int aci_solomode; + + struct mutex aci_mutex; +}; + +int snd_aci_cmd(struct snd_miro_aci *aci, int write1, int write2, int write3); + +struct snd_miro_aci *snd_aci_get_aci(void); + #endif /* _ACI_H_ */ + |