diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-11-17 08:46:59 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-03 06:18:42 -0500 |
commit | af26367f69a474ed809e4a59abb5855b47daaff4 (patch) | |
tree | 8ee9ec6449b3b51953cda3d546e90c064f963684 /sound/drivers/vx/vx_uer.c | |
parent | 9f38945fab04a0a0ea50880fa634f9bfa28f6226 (diff) |
[ALSA] Remove xxx_t typedefs: VXdriver
Remove xxx_t typedefs from the VXdriver codes
(vx_core support, vx222 and vxpocket).
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/drivers/vx/vx_uer.c')
-rw-r--r-- | sound/drivers/vx/vx_uer.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sound/drivers/vx/vx_uer.c b/sound/drivers/vx/vx_uer.c index 4fc38bde34f4..7400306b7f28 100644 --- a/sound/drivers/vx/vx_uer.c +++ b/sound/drivers/vx/vx_uer.c | |||
@@ -31,7 +31,7 @@ | |||
31 | * vx_modify_board_clock - tell the board that its clock has been modified | 31 | * vx_modify_board_clock - tell the board that its clock has been modified |
32 | * @sync: DSP needs to resynchronize its FIFO | 32 | * @sync: DSP needs to resynchronize its FIFO |
33 | */ | 33 | */ |
34 | static int vx_modify_board_clock(vx_core_t *chip, int sync) | 34 | static int vx_modify_board_clock(struct vx_core *chip, int sync) |
35 | { | 35 | { |
36 | struct vx_rmh rmh; | 36 | struct vx_rmh rmh; |
37 | 37 | ||
@@ -45,7 +45,7 @@ static int vx_modify_board_clock(vx_core_t *chip, int sync) | |||
45 | /* | 45 | /* |
46 | * vx_modify_board_inputs - resync audio inputs | 46 | * vx_modify_board_inputs - resync audio inputs |
47 | */ | 47 | */ |
48 | static int vx_modify_board_inputs(vx_core_t *chip) | 48 | static int vx_modify_board_inputs(struct vx_core *chip) |
49 | { | 49 | { |
50 | struct vx_rmh rmh; | 50 | struct vx_rmh rmh; |
51 | 51 | ||
@@ -59,7 +59,7 @@ static int vx_modify_board_inputs(vx_core_t *chip) | |||
59 | * @index: the bit index | 59 | * @index: the bit index |
60 | * returns 0 or 1. | 60 | * returns 0 or 1. |
61 | */ | 61 | */ |
62 | static int vx_read_one_cbit(vx_core_t *chip, int index) | 62 | static int vx_read_one_cbit(struct vx_core *chip, int index) |
63 | { | 63 | { |
64 | unsigned long flags; | 64 | unsigned long flags; |
65 | int val; | 65 | int val; |
@@ -82,7 +82,7 @@ static int vx_read_one_cbit(vx_core_t *chip, int index) | |||
82 | * @index: the bit index | 82 | * @index: the bit index |
83 | * @val: bit value, 0 or 1 | 83 | * @val: bit value, 0 or 1 |
84 | */ | 84 | */ |
85 | static void vx_write_one_cbit(vx_core_t *chip, int index, int val) | 85 | static void vx_write_one_cbit(struct vx_core *chip, int index, int val) |
86 | { | 86 | { |
87 | unsigned long flags; | 87 | unsigned long flags; |
88 | val = !!val; /* 0 or 1 */ | 88 | val = !!val; /* 0 or 1 */ |
@@ -104,7 +104,7 @@ static void vx_write_one_cbit(vx_core_t *chip, int index, int val) | |||
104 | * returns the frequency of UER, or 0 if not sync, | 104 | * returns the frequency of UER, or 0 if not sync, |
105 | * or a negative error code. | 105 | * or a negative error code. |
106 | */ | 106 | */ |
107 | static int vx_read_uer_status(vx_core_t *chip, int *mode) | 107 | static int vx_read_uer_status(struct vx_core *chip, int *mode) |
108 | { | 108 | { |
109 | int val, freq; | 109 | int val, freq; |
110 | 110 | ||
@@ -160,7 +160,7 @@ static int vx_read_uer_status(vx_core_t *chip, int *mode) | |||
160 | * default : HexFreq = (dword) ((double) 28224000 / (double) (Frequency*4)) - 0x000001FF | 160 | * default : HexFreq = (dword) ((double) 28224000 / (double) (Frequency*4)) - 0x000001FF |
161 | */ | 161 | */ |
162 | 162 | ||
163 | static int vx_calc_clock_from_freq(vx_core_t *chip, int freq) | 163 | static int vx_calc_clock_from_freq(struct vx_core *chip, int freq) |
164 | { | 164 | { |
165 | int hexfreq; | 165 | int hexfreq; |
166 | 166 | ||
@@ -187,7 +187,7 @@ static int vx_calc_clock_from_freq(vx_core_t *chip, int freq) | |||
187 | * vx_change_clock_source - change the clock source | 187 | * vx_change_clock_source - change the clock source |
188 | * @source: the new source | 188 | * @source: the new source |
189 | */ | 189 | */ |
190 | static void vx_change_clock_source(vx_core_t *chip, int source) | 190 | static void vx_change_clock_source(struct vx_core *chip, int source) |
191 | { | 191 | { |
192 | unsigned long flags; | 192 | unsigned long flags; |
193 | 193 | ||
@@ -205,7 +205,7 @@ static void vx_change_clock_source(vx_core_t *chip, int source) | |||
205 | /* | 205 | /* |
206 | * set the internal clock | 206 | * set the internal clock |
207 | */ | 207 | */ |
208 | void vx_set_internal_clock(vx_core_t *chip, unsigned int freq) | 208 | void vx_set_internal_clock(struct vx_core *chip, unsigned int freq) |
209 | { | 209 | { |
210 | int clock; | 210 | int clock; |
211 | unsigned long flags; | 211 | unsigned long flags; |
@@ -228,7 +228,7 @@ void vx_set_internal_clock(vx_core_t *chip, unsigned int freq) | |||
228 | * set the iec958 status bits | 228 | * set the iec958 status bits |
229 | * @bits: 32-bit status bits | 229 | * @bits: 32-bit status bits |
230 | */ | 230 | */ |
231 | void vx_set_iec958_status(vx_core_t *chip, unsigned int bits) | 231 | void vx_set_iec958_status(struct vx_core *chip, unsigned int bits) |
232 | { | 232 | { |
233 | int i; | 233 | int i; |
234 | 234 | ||
@@ -243,7 +243,7 @@ void vx_set_iec958_status(vx_core_t *chip, unsigned int bits) | |||
243 | /* | 243 | /* |
244 | * vx_set_clock - change the clock and audio source if necessary | 244 | * vx_set_clock - change the clock and audio source if necessary |
245 | */ | 245 | */ |
246 | int vx_set_clock(vx_core_t *chip, unsigned int freq) | 246 | int vx_set_clock(struct vx_core *chip, unsigned int freq) |
247 | { | 247 | { |
248 | int src_changed = 0; | 248 | int src_changed = 0; |
249 | 249 | ||
@@ -285,7 +285,7 @@ int vx_set_clock(vx_core_t *chip, unsigned int freq) | |||
285 | /* | 285 | /* |
286 | * vx_change_frequency - called from interrupt handler | 286 | * vx_change_frequency - called from interrupt handler |
287 | */ | 287 | */ |
288 | int vx_change_frequency(vx_core_t *chip) | 288 | int vx_change_frequency(struct vx_core *chip) |
289 | { | 289 | { |
290 | int freq; | 290 | int freq; |
291 | 291 | ||