aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2014-10-06 08:01:11 -0400
committerTakashi Iwai <tiwai@suse.de>2014-10-06 08:01:11 -0400
commit8df22a4d6f5b81c9c1703579d4907b57002689ed (patch)
tree064e9662d427a82076e1151fcd9aa78a1066f9f4 /sound/core
parent0cae90a96c15f2fd3bd139ba5505755c9c9ef2eb (diff)
parenta5448c88b812390a3622e76d774e10c0da1fb970 (diff)
Merge tag 'asoc-v3.18' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-next
ASoC: Updates for v3.18 - More componentisation work from Lars-Peter, this time mainly cleaning up the suspend and bias level transition callbacks. - Real system support for the Intel drivers and a bunch of fixes and enhancements for the associated CODEC drivers, this is going to need a lot quirks over time due to the lack of any firmware description of the boards. - Jack detect support for simple card from Dylan Reid. - A bunch of small fixes and enhancements for the Freescale drivers. - New drivers for Analog Devices SSM4567, Cirrus Logic CS35L32, Everest Semiconductor ES8328 and Freescale cards using the ASRC in newer i.MX processors.
Diffstat (limited to 'sound/core')
-rw-r--r--sound/core/pcm_lib.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sound/core/pcm_lib.c b/sound/core/pcm_lib.c
index b03c7ae5f4e3..dfc28542a007 100644
--- a/sound/core/pcm_lib.c
+++ b/sound/core/pcm_lib.c
@@ -1784,14 +1784,16 @@ static int snd_pcm_lib_ioctl_fifo_size(struct snd_pcm_substream *substream,
1784{ 1784{
1785 struct snd_pcm_hw_params *params = arg; 1785 struct snd_pcm_hw_params *params = arg;
1786 snd_pcm_format_t format; 1786 snd_pcm_format_t format;
1787 int channels, width; 1787 int channels;
1788 ssize_t frame_size;
1788 1789
1789 params->fifo_size = substream->runtime->hw.fifo_size; 1790 params->fifo_size = substream->runtime->hw.fifo_size;
1790 if (!(substream->runtime->hw.info & SNDRV_PCM_INFO_FIFO_IN_FRAMES)) { 1791 if (!(substream->runtime->hw.info & SNDRV_PCM_INFO_FIFO_IN_FRAMES)) {
1791 format = params_format(params); 1792 format = params_format(params);
1792 channels = params_channels(params); 1793 channels = params_channels(params);
1793 width = snd_pcm_format_physical_width(format); 1794 frame_size = snd_pcm_format_size(format, channels);
1794 params->fifo_size /= width * channels; 1795 if (frame_size > 0)
1796 params->fifo_size /= (unsigned)frame_size;
1795 } 1797 }
1796 return 0; 1798 return 0;
1797} 1799}