diff options
author | Takashi Iwai <tiwai@suse.de> | 2006-01-13 12:09:12 +0100 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-03-22 10:23:20 +0100 |
commit | 0534ab4279bd25e2d0a888af07466446dac05d74 (patch) | |
tree | c5e6f6398101e9b278db7d7749f93035d6e1fae6 /sound/core/oss/linear.c | |
parent | 9d83911ac082c6d63c1c08f235349113d8c1d0a3 (diff) | |
download | linux-0534ab4279bd25e2d0a888af07466446dac05d74.tar.gz linux-0534ab4279bd25e2d0a888af07466446dac05d74.tar.bz2 linux-0534ab4279bd25e2d0a888af07466446dac05d74.zip |
[ALSA] Clean up pcm-oss plugins
Modules: ALSA<-OSS emulation
Clean up pcm-oss plugin codes.
Removed dead codes, and simplified route/rate plugins.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/oss/linear.c')
-rw-r--r-- | sound/core/oss/linear.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/oss/linear.c b/sound/core/oss/linear.c index ef331230b3a6..5b1bcdc64779 100644 --- a/sound/core/oss/linear.c +++ b/sound/core/oss/linear.c @@ -106,7 +106,7 @@ static snd_pcm_sframes_t linear_transfer(struct snd_pcm_plugin *plugin, return frames; } -int conv_index(int src_format, int dst_format) +static int conv_index(int src_format, int dst_format) { int src_endian, dst_endian, sign, src_width, dst_width; |