aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core/oss/copy.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2005-11-17 08:01:49 -0500
committerJaroslav Kysela <perex@suse.cz>2006-01-03 06:17:48 -0500
commit6ac77bc180fbd985988015020c2e2347e802959d (patch)
tree1959127176dbc937fe4646d94e48f14cc013d087 /sound/core/oss/copy.c
parentf956b4a3ae790e1bdde865ac42dd1b99b64a6256 (diff)
[ALSA] Remove xxx_t typedefs: PCM OSS-emulation
Modules: ALSA<-OSS emulation Remove xxx_t typedefs from the core PCM OSS-emulation codes. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/oss/copy.c')
-rw-r--r--sound/core/oss/copy.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sound/core/oss/copy.c b/sound/core/oss/copy.c
index edecbe7417b..d6a04c2d5a7 100644
--- a/sound/core/oss/copy.c
+++ b/sound/core/oss/copy.c
@@ -25,9 +25,9 @@
25#include <sound/pcm.h> 25#include <sound/pcm.h>
26#include "pcm_plugin.h" 26#include "pcm_plugin.h"
27 27
28static snd_pcm_sframes_t copy_transfer(snd_pcm_plugin_t *plugin, 28static snd_pcm_sframes_t copy_transfer(struct snd_pcm_plugin *plugin,
29 const snd_pcm_plugin_channel_t *src_channels, 29 const struct snd_pcm_plugin_channel *src_channels,
30 snd_pcm_plugin_channel_t *dst_channels, 30 struct snd_pcm_plugin_channel *dst_channels,
31 snd_pcm_uframes_t frames) 31 snd_pcm_uframes_t frames)
32{ 32{
33 unsigned int channel; 33 unsigned int channel;
@@ -58,13 +58,13 @@ static snd_pcm_sframes_t copy_transfer(snd_pcm_plugin_t *plugin,
58 return frames; 58 return frames;
59} 59}
60 60
61int snd_pcm_plugin_build_copy(snd_pcm_plug_t *plug, 61int snd_pcm_plugin_build_copy(struct snd_pcm_substream *plug,
62 snd_pcm_plugin_format_t *src_format, 62 struct snd_pcm_plugin_format *src_format,
63 snd_pcm_plugin_format_t *dst_format, 63 struct snd_pcm_plugin_format *dst_format,
64 snd_pcm_plugin_t **r_plugin) 64 struct snd_pcm_plugin **r_plugin)
65{ 65{
66 int err; 66 int err;
67 snd_pcm_plugin_t *plugin; 67 struct snd_pcm_plugin *plugin;
68 int width; 68 int width;
69 69
70 snd_assert(r_plugin != NULL, return -ENXIO); 70 snd_assert(r_plugin != NULL, return -ENXIO);