All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: fsi: remove unsupported PAUSE flag
       [not found]     ` <b1b3c40db17d47f79355ba7f44d0f21f@SG2PR06MB0444.apcprd06.prod.outlook.com>
@ 2014-10-29  4:01       ` Kuninori Morimoto
  2014-10-29 11:03         ` Mark Brown
  2014-10-29  4:02       ` [PATCH] ASoC: rsnd: " Kuninori Morimoto
  1 sibling, 1 reply; 4+ messages in thread
From: Kuninori Morimoto @ 2014-10-29  4:01 UTC (permalink / raw)
  To: Mark Brown
  Cc: Linux-ALSA, JUN WATANABE, Kuninori Morimoto, Liam Girdwood, Simon,
	NAOYA SHIIBA

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

FSI doesn't support PAUSE.
Remove SNDRV_PCM_INFO_PAUSE flags from snd_pcm_hardware info

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 sound/soc/sh/fsi.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c
index 66fddec..88e5df4 100644
--- a/sound/soc/sh/fsi.c
+++ b/sound/soc/sh/fsi.c
@@ -1711,8 +1711,7 @@ static const struct snd_soc_dai_ops fsi_dai_ops = {
 static struct snd_pcm_hardware fsi_pcm_hardware = {
 	.info =		SNDRV_PCM_INFO_INTERLEAVED	|
 			SNDRV_PCM_INFO_MMAP		|
-			SNDRV_PCM_INFO_MMAP_VALID	|
-			SNDRV_PCM_INFO_PAUSE,
+			SNDRV_PCM_INFO_MMAP_VALID,
 	.buffer_bytes_max	= 64 * 1024,
 	.period_bytes_min	= 32,
 	.period_bytes_max	= 8192,
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] ASoC: rsnd: remove unsupported PAUSE flag
       [not found]     ` <b1b3c40db17d47f79355ba7f44d0f21f@SG2PR06MB0444.apcprd06.prod.outlook.com>
  2014-10-29  4:01       ` [PATCH] ASoC: fsi: remove unsupported PAUSE flag Kuninori Morimoto
@ 2014-10-29  4:02       ` Kuninori Morimoto
  2014-10-29 11:03         ` Mark Brown
  1 sibling, 1 reply; 4+ messages in thread
From: Kuninori Morimoto @ 2014-10-29  4:02 UTC (permalink / raw)
  To: Mark Brown
  Cc: Linux-ALSA, JUN WATANABE, Kuninori Morimoto, Liam Girdwood, Simon,
	NAOYA SHIIBA

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

R-Car sound doesn't support PAUSE.
Remove SNDRV_PCM_INFO_PAUSE flags from snd_pcm_hardware info

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 sound/soc/sh/rcar/core.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/sh/rcar/core.c b/sound/soc/sh/rcar/core.c
index 1922ec5..7004219 100644
--- a/sound/soc/sh/rcar/core.c
+++ b/sound/soc/sh/rcar/core.c
@@ -886,8 +886,7 @@ static int rsnd_dai_probe(struct platform_device *pdev,
 static struct snd_pcm_hardware rsnd_pcm_hardware = {
 	.info =		SNDRV_PCM_INFO_INTERLEAVED	|
 			SNDRV_PCM_INFO_MMAP		|
-			SNDRV_PCM_INFO_MMAP_VALID	|
-			SNDRV_PCM_INFO_PAUSE,
+			SNDRV_PCM_INFO_MMAP_VALID,
 	.buffer_bytes_max	= 64 * 1024,
 	.period_bytes_min	= 32,
 	.period_bytes_max	= 8192,
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] ASoC: fsi: remove unsupported PAUSE flag
  2014-10-29  4:01       ` [PATCH] ASoC: fsi: remove unsupported PAUSE flag Kuninori Morimoto
@ 2014-10-29 11:03         ` Mark Brown
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2014-10-29 11:03 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Linux-ALSA, JUN WATANABE, Kuninori Morimoto, Liam Girdwood, Simon,
	NAOYA SHIIBA


[-- Attachment #1.1: Type: text/plain, Size: 248 bytes --]

On Tue, Oct 28, 2014 at 09:01:53PM -0700, Kuninori Morimoto wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> 
> FSI doesn't support PAUSE.
> Remove SNDRV_PCM_INFO_PAUSE flags from snd_pcm_hardware info

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ASoC: rsnd: remove unsupported PAUSE flag
  2014-10-29  4:02       ` [PATCH] ASoC: rsnd: " Kuninori Morimoto
@ 2014-10-29 11:03         ` Mark Brown
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2014-10-29 11:03 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Linux-ALSA, JUN WATANABE, Kuninori Morimoto, Liam Girdwood, Simon,
	NAOYA SHIIBA


[-- Attachment #1.1: Type: text/plain, Size: 256 bytes --]

On Tue, Oct 28, 2014 at 09:02:03PM -0700, Kuninori Morimoto wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> 
> R-Car sound doesn't support PAUSE.
> Remove SNDRV_PCM_INFO_PAUSE flags from snd_pcm_hardware info

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-10-29 11:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <ebfba8c7cfed4909ad23e63899dce37c@SG2PR06MB0444.apcprd06.prod.outlook.com>
     [not found] ` <14c90bfeb435473dadc9e4d3251c9f65@HK2PR06MB0419.apcprd06.prod.outlook.com>
     [not found]   ` <87lhnziubh.wl%kuninori.morimoto.gx@renesas.com>
     [not found]     ` <b1b3c40db17d47f79355ba7f44d0f21f@SG2PR06MB0444.apcprd06.prod.outlook.com>
2014-10-29  4:01       ` [PATCH] ASoC: fsi: remove unsupported PAUSE flag Kuninori Morimoto
2014-10-29 11:03         ` Mark Brown
2014-10-29  4:02       ` [PATCH] ASoC: rsnd: " Kuninori Morimoto
2014-10-29 11:03         ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.