projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c517d83
)
ALSA: Add params_set_format helper
author
Fang, Yang A
<yang.a.fang@intel.com>
Mon, 9 Feb 2015 08:18:11 +0000
(
00:18
-0800)
committer
Mark Brown
<broonie@kernel.org>
Mon, 23 Feb 2015 15:43:18 +0000
(
00:43
+0900)
Add a helper to set pcm format directly from params
Signed-off-by: Fang, Yang A <yang.a.fang@intel.com>
Reviewed-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
include/sound/pcm_params.h
patch
|
blob
|
blame
|
history
diff --git
a/include/sound/pcm_params.h
b/include/sound/pcm_params.h
index 3c45f3924ba7e779a4d32a357665d0359abcbaaf..c704357775fc4ef077ef52fb27cfb97c75b378ee 100644
(file)
--- a/
include/sound/pcm_params.h
+++ b/
include/sound/pcm_params.h
@@
-366,4
+366,11
@@
static inline int params_physical_width(const struct snd_pcm_hw_params *p)
return snd_pcm_format_physical_width(params_format(p));
}
+static inline void
+params_set_format(struct snd_pcm_hw_params *p, snd_pcm_format_t fmt)
+{
+ snd_mask_set(hw_param_mask(p, SNDRV_PCM_HW_PARAM_FORMAT),
+ (__force int)fmt);
+}
+
#endif /* __SOUND_PCM_PARAMS_H */