public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab@redhat.com>
To: Jiri Slaby <jirislaby@gmail.com>
Cc: linux-kernel@vger.kernel.org, akpm@linux-foundation.org,
	mm-commits@vger.kernel.org, Antti Palosaari <crope@iki.fi>,
	Greg KH <gregkh@suse.de>, USB list <linux-usb@vger.kernel.org>
Subject: Re: DVB: af9015 defunct [was: mmotm 2010-10-20-15-01 uploaded]
Date: Wed, 27 Oct 2010 15:05:21 -0200	[thread overview]
Message-ID: <4CC85BD1.5080907@redhat.com> (raw)
In-Reply-To: <4CC85513.5060407@gmail.com>

Em 27-10-2010 14:36, Jiri Slaby escreveu:

>> It will properly log the size of the message the driver tried to use, and will
>> reduce the max number of bytes per I2C transfer to 8.
> 
> Yes, this one works. And to be sure that 16 doesn't work I unplugged and
> replugged the device (I didn't last time). And boom, it works too. So
> .small_i2c = TDA18271_16_BYTE_CHUNK_INIT fixes the issue as well.

Ok, I'm adding the enclosing patch to the tree, adding a proper description
about the regression. 

I'll be adding it to the tree.

Thanks!
Mauro

---

commit 7655e594945289b418af39f6669fea4666a7b520
Author: Mauro Carvalho Chehab <mchehab@redhat.com>
Date:   Wed Oct 27 14:55:34 2010 -0200

    [media] af9015: Fix max I2C message size when used with tda18271
    
    Changeset 1724c8fa7eb33d68898e060a08a8e6a88348b62f added an option to change
    the maximum I2C size to 8 bytes. However, it forgot to replace the previous
    usage at af9015 to use the newly defined macro value
    (TDA18271_16_BYTE_CHUNK_INIT).
    
    A latter changeset (e350d44fed8eb86a7192a579e3687fcd76a4645b) extended the
    possible values for .small_i2c field and, instead of using a random sequence
    of numbers, it used a number that makes more sense (e. g. the actual limit,
    in terms of bytes).
    
    However, as af9015 were using .small_i2c = 1, this become undefined, and the
    restriction of a max size of 16 was gone.
    
    While here, fix the reported msg size at tda18271-common.c.
    
    Reported-by: Jiri Slaby <jirislaby@gmail.com>
    Tested-by: Jiri Slaby <jirislaby@gmail.com>
    Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

diff --git a/drivers/media/common/tuners/tda18271-common.c b/drivers/media/common/tuners/tda18271-common.c
index 195b30e..5466d47 100644
--- a/drivers/media/common/tuners/tda18271-common.c
+++ b/drivers/media/common/tuners/tda18271-common.c
@@ -237,7 +237,7 @@ int tda18271_write_regs(struct dvb_frontend *fe, int idx, int len)
 
 	if (ret != 1)
 		tda_err("ERROR: idx = 0x%x, len = %d, "
-			"i2c_transfer returned: %d\n", idx, len, ret);
+			"i2c_transfer returned: %d\n", idx, max, ret);
 
 	return (ret == 1 ? 0 : ret);
 }
diff --git a/drivers/media/dvb/dvb-usb/af9015.c b/drivers/media/dvb/dvb-usb/af9015.c
index 3ef19a8..31c0a0e 100644
--- a/drivers/media/dvb/dvb-usb/af9015.c
+++ b/drivers/media/dvb/dvb-usb/af9015.c
@@ -1131,7 +1131,7 @@ static struct qt1010_config af9015_qt1010_config = {
 
 static struct tda18271_config af9015_tda18271_config = {
 	.gate = TDA18271_GATE_DIGITAL,
-	.small_i2c = 1,
+	.small_i2c = TDA18271_16_BYTE_CHUNK_INIT,
 };
 
 static struct mxl5005s_config af9015_mxl5003_config = {



  reply	other threads:[~2010-10-27 17:06 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-20 22:01 mmotm 2010-10-20-15-01 uploaded akpm
2010-10-21  2:54 ` Li Zefan
2010-10-21  3:15   ` Li Zefan
2010-10-21  3:38     ` Konrad Rzeszutek Wilk
2010-10-21  3:44       ` Li Zefan
2010-10-21 14:28         ` Konrad Rzeszutek Wilk
2010-10-21  3:46     ` Andrew Morton
2010-10-21  7:17       ` Peter Zijlstra
2010-10-21  7:30         ` Andrew Morton
2010-10-21  9:52           ` Peter Zijlstra
2010-10-21  9:54           ` Peter Zijlstra
2010-10-21  7:41 ` HDA: no sound [was: mmotm 2010-10-20-15-01 uploaded] Jiri Slaby
2010-10-21  7:49   ` Takashi Iwai
2010-10-21  7:57     ` Jiri Slaby
2010-10-21  8:05       ` Takashi Iwai
2010-10-21 18:27         ` Jiri Slaby
2010-10-21 19:20           ` Takashi Iwai
2010-10-21 19:21             ` Jiri Slaby
2010-10-21 19:22               ` Takashi Iwai
2010-10-21 19:40               ` Takashi Iwai
2010-10-21 20:29                 ` Valdis.Kletnieks
2010-10-21 20:48                   ` Takashi Iwai
2010-10-21 21:24                     ` Valdis.Kletnieks
2010-10-21 21:31                       ` Takashi Iwai
2010-10-21 21:42                         ` Jiri Slaby
2010-10-22  8:46                           ` Colin Guthrie
2010-10-22  9:02                             ` Takashi Iwai
2010-10-22  9:18                               ` Jiri Slaby
2010-10-22  9:40                                 ` Takashi Iwai
2010-10-22  9:45                                   ` Jiri Slaby
2010-10-22 10:26                                     ` Takashi Iwai
2010-10-22 11:10                                       ` Jiri Slaby
2010-10-22  9:41                               ` Colin Guthrie
2010-10-22 11:31           ` [alsa-devel] " Clemens Ladisch
2010-10-22 11:51             ` Jiri Slaby
2010-10-22 14:03             ` Takashi Iwai
2010-10-22 19:53               ` Colin Guthrie
2010-10-21 15:22       ` Valdis.Kletnieks
2010-10-21 17:59         ` Jiri Slaby
2010-10-21 11:10 ` mmotm 2010-10-20-15-01 uploaded Zimny Lech
2010-10-21 11:14 ` mmotm 2010-10-20 - netfilter Kconfig whinge Valdis.Kletnieks
2010-10-29 19:11   ` Patrick McHardy
2010-10-21 17:51 ` DVB: af9015 defunct [was: mmotm 2010-10-20-15-01 uploaded] Jiri Slaby
2010-10-21 22:24   ` Jiri Slaby
2010-10-22  9:21   ` Jiri Slaby
2010-10-22 13:56     ` Mauro Carvalho Chehab
2010-10-22 14:06       ` Jiri Slaby
2010-10-27 16:12         ` Mauro Carvalho Chehab
2010-10-27 16:36           ` Jiri Slaby
2010-10-27 17:05             ` Mauro Carvalho Chehab [this message]
2010-10-27 16:41           ` Antti Palosaari
2010-10-27 17:11             ` Mauro Carvalho Chehab

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4CC85BD1.5080907@redhat.com \
    --to=mchehab@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=crope@iki.fi \
    --cc=gregkh@suse.de \
    --cc=jirislaby@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mm-commits@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox