diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-03-19 09:59:21 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-03-19 09:59:21 +0100 |
commit | 98204646f2b15d368701265e4194b773a6f94600 (patch) | |
tree | 2226a42bf8d492f35102aeeb2c48d343aa79ec03 /sound/core/pcm_lib.c | |
parent | cad377acf3d6af6279622048e96680e79e352183 (diff) | |
download | kernel_samsung_crespo-98204646f2b15d368701265e4194b773a6f94600.zip kernel_samsung_crespo-98204646f2b15d368701265e4194b773a6f94600.tar.gz kernel_samsung_crespo-98204646f2b15d368701265e4194b773a6f94600.tar.bz2 |
ALSA: pcm - avoid unnecessary inline
Remove unnecessary explicit inlininig of internal functions.
Let compiler optimize.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/pcm_lib.c')
-rw-r--r-- | sound/core/pcm_lib.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sound/core/pcm_lib.c b/sound/core/pcm_lib.c index 2ff25ed..3026547 100644 --- a/sound/core/pcm_lib.c +++ b/sound/core/pcm_lib.c @@ -148,8 +148,9 @@ static void xrun(struct snd_pcm_substream *substream) } } -static inline snd_pcm_uframes_t snd_pcm_update_hw_ptr_pos(struct snd_pcm_substream *substream, - struct snd_pcm_runtime *runtime) +static snd_pcm_uframes_t +snd_pcm_update_hw_ptr_pos(struct snd_pcm_substream *substream, + struct snd_pcm_runtime *runtime) { snd_pcm_uframes_t pos; @@ -167,8 +168,8 @@ static inline snd_pcm_uframes_t snd_pcm_update_hw_ptr_pos(struct snd_pcm_substre return pos; } -static inline int snd_pcm_update_hw_ptr_post(struct snd_pcm_substream *substream, - struct snd_pcm_runtime *runtime) +static int snd_pcm_update_hw_ptr_post(struct snd_pcm_substream *substream, + struct snd_pcm_runtime *runtime) { snd_pcm_uframes_t avail; @@ -200,7 +201,7 @@ static inline int snd_pcm_update_hw_ptr_post(struct snd_pcm_substream *substream } \ } while (0) -static inline int snd_pcm_update_hw_ptr_interrupt(struct snd_pcm_substream *substream) +static int snd_pcm_update_hw_ptr_interrupt(struct snd_pcm_substream *substream) { struct snd_pcm_runtime *runtime = substream->runtime; snd_pcm_uframes_t pos; |