diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-04-11 11:12:46 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-04-12 11:34:21 +0200 |
commit | 12831c15f35dcc9f55fa63d50fd4892c7c6a0a1c (patch) | |
tree | 6db15ad0ab6b4f17409bf0b6cff4eee19a8486c6 | |
parent | 73864fc634932bc827f852557f637fade0227381 (diff) | |
download | linux-3.10-12831c15f35dcc9f55fa63d50fd4892c7c6a0a1c.tar.gz linux-3.10-12831c15f35dcc9f55fa63d50fd4892c7c6a0a1c.tar.bz2 linux-3.10-12831c15f35dcc9f55fa63d50fd4892c7c6a0a1c.zip |
[ALSA] sound/core/pcm.c: make snd_pcm_format_name() static
Modules: PCM Midlevel
This patch makes the needlessly global snd_pcm_format_name() static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | include/sound/pcm.h | 1 | ||||
-rw-r--r-- | sound/core/pcm.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/include/sound/pcm.h b/include/sound/pcm.h index e9ab45556af..df70e7592ab 100644 --- a/include/sound/pcm.h +++ b/include/sound/pcm.h @@ -898,7 +898,6 @@ ssize_t snd_pcm_format_size(snd_pcm_format_t format, size_t samples); const unsigned char *snd_pcm_format_silence_64(snd_pcm_format_t format); int snd_pcm_format_set_silence(snd_pcm_format_t format, void *buf, unsigned int frames); snd_pcm_format_t snd_pcm_build_linear_format(int width, int unsignd, int big_endian); -const char *snd_pcm_format_name(snd_pcm_format_t format); void snd_pcm_set_ops(struct snd_pcm * pcm, int direction, struct snd_pcm_ops *ops); void snd_pcm_set_sync(struct snd_pcm_substream *substream); diff --git a/sound/core/pcm.c b/sound/core/pcm.c index 5d7eb123b99..122e10a61ab 100644 --- a/sound/core/pcm.c +++ b/sound/core/pcm.c @@ -196,7 +196,7 @@ static char *snd_pcm_format_names[] = { FORMAT(U18_3BE), }; -const char *snd_pcm_format_name(snd_pcm_format_t format) +static const char *snd_pcm_format_name(snd_pcm_format_t format) { return snd_pcm_format_names[format]; } |