diff options
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 @@ | |||
70 | #define ACI_SET_EQ6 0x45 | 70 | #define ACI_SET_EQ6 0x45 |
71 | #define ACI_SET_EQ7 0x46 /* ... to Treble */ | 71 | #define ACI_SET_EQ7 0x46 /* ... to Treble */ |
72 | 72 | ||
73 | struct snd_miro_aci { | ||
74 | unsigned long aci_port; | ||
75 | int aci_vendor; | ||
76 | int aci_product; | ||
77 | int aci_version; | ||
78 | int aci_amp; | ||
79 | int aci_preamp; | ||
80 | int aci_solomode; | ||
81 | |||
82 | struct mutex aci_mutex; | ||
83 | }; | ||
84 | |||
85 | int snd_aci_cmd(struct snd_miro_aci *aci, int write1, int write2, int write3); | ||
86 | |||
87 | struct snd_miro_aci *snd_aci_get_aci(void); | ||
88 | |||
73 | #endif /* _ACI_H_ */ | 89 | #endif /* _ACI_H_ */ |
90 | |||