linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] snd: soc: cx20442 codec: set tty->receiver_room in v253_open
@ 2016-06-16 20:04 Janusz Krzysztofik
  2016-06-17 11:40 ` Mark Brown
  2016-06-17 11:43 ` Applied "ASoC: cx20442: set tty->receiver_room in v253_open" to the asoc tree Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Janusz Krzysztofik @ 2016-06-16 20:04 UTC (permalink / raw)
  To: Mark Brown, Liam Girdwood
  Cc: Jaroslav Kysela, Takashi Iwai, alsa-devel, linux-kernel,
	Janusz Krzysztofik

Commit 79901317ce80 ("n_tty: Don't flush buffer when closing ldisc"),
introduced in v3.10, revealed a bug in the cx20442 codec driver
which has never been setting tty->receive_room on line discipline
open as it should from the beginning. Fix it.

Created and tested on Amstrad Delta against Linux-4.7-rc3

Signed-off-by: Janusz Krzysztofik <jmkrzyszt@gmail.com>
---
 sound/soc/codecs/cx20442.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/codecs/cx20442.c b/sound/soc/codecs/cx20442.c
index d6f4abb..fb3885f 100644
--- a/sound/soc/codecs/cx20442.c
+++ b/sound/soc/codecs/cx20442.c
@@ -226,6 +226,7 @@ static int v253_open(struct tty_struct *tty)
 	if (!tty->disc_data)
 		return -ENODEV;
 
+	tty->receive_room = 16;
 	if (tty->ops->write(tty, v253_init, len) != len) {
 		ret = -EIO;
 		goto err;
-- 
2.7.3

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

* Re: [PATCH] snd: soc: cx20442 codec: set tty->receiver_room in v253_open
  2016-06-16 20:04 [PATCH] snd: soc: cx20442 codec: set tty->receiver_room in v253_open Janusz Krzysztofik
@ 2016-06-17 11:40 ` Mark Brown
  2016-06-17 11:43 ` Applied "ASoC: cx20442: set tty->receiver_room in v253_open" to the asoc tree Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2016-06-17 11:40 UTC (permalink / raw)
  To: Janusz Krzysztofik
  Cc: Liam Girdwood, Jaroslav Kysela, Takashi Iwai, alsa-devel, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 468 bytes --]

On Thu, Jun 16, 2016 at 10:04:35PM +0200, Janusz Krzysztofik wrote:
> Commit 79901317ce80 ("n_tty: Don't flush buffer when closing ldisc"),
> introduced in v3.10, revealed a bug in the cx20442 codec driver
> which has never been setting tty->receive_room on line discipline
> open as it should from the beginning. Fix it.

Please submit patches using subject lines reflecting the style for the
subsystem.  This makes it easier for people to identify relevant
patches.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Applied "ASoC: cx20442: set tty->receiver_room in v253_open" to the asoc tree
  2016-06-16 20:04 [PATCH] snd: soc: cx20442 codec: set tty->receiver_room in v253_open Janusz Krzysztofik
  2016-06-17 11:40 ` Mark Brown
@ 2016-06-17 11:43 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2016-06-17 11:43 UTC (permalink / raw)
  To: Janusz Krzysztofik
  Cc: Mark Brown, Mark Brown, Liam Girdwood, linux-kernel, alsa-devel,
	Takashi Iwai

The patch

   ASoC: cx20442: set tty->receiver_room in v253_open

has been applied to the asoc tree at

   git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git 

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.  

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

>From 86c0ae7cde7a8699116b365a5e3016753f0cd92a Mon Sep 17 00:00:00 2001
From: Janusz Krzysztofik <jmkrzyszt@gmail.com>
Date: Thu, 16 Jun 2016 22:04:35 +0200
Subject: [PATCH] ASoC: cx20442: set tty->receiver_room in v253_open

Commit 79901317ce80 ("n_tty: Don't flush buffer when closing ldisc"),
introduced in v3.10, revealed a bug in the cx20442 codec driver
which has never been setting tty->receive_room on line discipline
open as it should from the beginning. Fix it.

Created and tested on Amstrad Delta against Linux-4.7-rc3

Signed-off-by: Janusz Krzysztofik <jmkrzyszt@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/cx20442.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/codecs/cx20442.c b/sound/soc/codecs/cx20442.c
index d6f4abbbf8a7..fb3885fe0afb 100644
--- a/sound/soc/codecs/cx20442.c
+++ b/sound/soc/codecs/cx20442.c
@@ -226,6 +226,7 @@ static int v253_open(struct tty_struct *tty)
 	if (!tty->disc_data)
 		return -ENODEV;
 
+	tty->receive_room = 16;
 	if (tty->ops->write(tty, v253_init, len) != len) {
 		ret = -EIO;
 		goto err;
-- 
2.8.1

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

end of thread, other threads:[~2016-06-17 11:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-16 20:04 [PATCH] snd: soc: cx20442 codec: set tty->receiver_room in v253_open Janusz Krzysztofik
2016-06-17 11:40 ` Mark Brown
2016-06-17 11:43 ` Applied "ASoC: cx20442: set tty->receiver_room in v253_open" to the asoc tree Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).