diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2017-06-09 21:46:48 +0900 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-06-09 16:27:21 +0200 |
commit | 60f96aaecb19ca294addfff0d2d0335293f3c379 (patch) | |
tree | ac0e4a3cb55e4aecab89dd6feb90f70dc82eb0f2 /sound/core/pcm_local.h | |
parent | 4e4b7eaa624d08433ab571920d50b6e14a70ab90 (diff) |
ALSA: pcm: localize snd_pcm_hw_params_choose()
As of v4.12, snd_pcm_hw_params_choose() is just called in a process
context of ioctl(2) with SNDRV_PCM_IOCTL_HW_PARAMS. The function locates
in a different file, which has no tracepoints.
This commit moves the function to a file with the tracepoints for later
commit.
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/pcm_local.h')
-rw-r--r-- | sound/core/pcm_local.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/core/pcm_local.h b/sound/core/pcm_local.h index 34c66decaaf2..e4bf2af62b02 100644 --- a/sound/core/pcm_local.h +++ b/sound/core/pcm_local.h @@ -24,9 +24,6 @@ void snd_interval_mulkdiv(const struct snd_interval *a, unsigned int k, int snd_pcm_hw_constraints_init(struct snd_pcm_substream *substream); int snd_pcm_hw_constraints_complete(struct snd_pcm_substream *substream); -int snd_pcm_hw_params_choose(struct snd_pcm_substream *substream, - struct snd_pcm_hw_params *params); - int snd_pcm_hw_constraint_mask(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var, u_int32_t mask); |