From patchwork Mon Aug 23 13:30:14 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dmitri Belimov X-Patchwork-Id: 4147 Return-path: Envelope-to: mchehab@pedra Delivery-date: Mon, 23 Aug 2010 10:31:11 -0300 Received: from mchehab by pedra with local (Exim 4.72) (envelope-from ) id 1OnX7H-0006U0-Bn for mchehab@pedra; Mon, 23 Aug 2010 10:31:11 -0300 Received: from bombadil.infradead.org [18.85.46.34] by pedra with IMAP (fetchmail-6.3.17) for (single-drop); Mon, 23 Aug 2010 10:31:11 -0300 (BRT) Received: from vger.kernel.org ([209.132.180.67]) by bombadil.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1OnX6K-0005dO-5P; Mon, 23 Aug 2010 13:30:12 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752836Ab0HWNaK (ORCPT + 1 other); Mon, 23 Aug 2010 09:30:10 -0400 Received: from mail-bw0-f46.google.com ([209.85.214.46]:37981 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751998Ab0HWNaJ (ORCPT ); Mon, 23 Aug 2010 09:30:09 -0400 Received: by bwz11 with SMTP id 11so3861905bwz.19 for ; Mon, 23 Aug 2010 06:30:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:x-mailer:mime-version:content-type; bh=7vLJXcVnWelPFJwlZmee7uGsdX97QAIDM311yZFMnDY=; b=pJ0apB20oTSTQZQkQYD+GXIBIuihP5sZLa7DqDBYJc+x1ZiyQZu5xy7pak4cbyS3cS aiLLUBR5DeTk0qbfGzO3Hz8xDoRbn9ht0XiIswnH4hVv3LboZtgIoEI6orLrJcQYtX6c 1QAhITavHEa+kVQACb4oOW1RN/O9REzU2tuXI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:x-mailer:mime-version:content-type; b=bmBV0mdWYiqQDhcIfyO0gt2BrgXoxHa9195vzCHmbFzu27zgFlpf2K0FBRdBFG5aOK 80AgaBwvc8Gx028r+aEzbL0IrGdpqsbYyhJNKfoKNR22tH0NIBK1FF9YbYgYLQMuCYGJ VTIh6yAy/OQoPBq3Vcexoy62rXYD/l63zpjIY= Received: by 10.204.30.200 with SMTP id v8mr3546125bkc.190.1282570208190; Mon, 23 Aug 2010 06:30:08 -0700 (PDT) Received: from glory.local (bruce.loctelecom.ru [213.108.184.10]) by mx.google.com with ESMTPS id y19sm4718701bkw.18.2010.08.23.06.30.04 (version=SSLv3 cipher=RC4-MD5); Mon, 23 Aug 2010 06:30:06 -0700 (PDT) Date: Mon, 23 Aug 2010 09:30:14 -0400 From: Dmitri Belimov To: Linux Media Mailing List , Mauro Carvalho Chehab Subject: [PATCH] Fix regression for BeholdTV Columbus. Message-ID: <20100823093014.682ee959@glory.local> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; i486-pc-linux-gnu) Mime-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Sender: Mauro Carvalho Chehab Hi Some time a go our customers wrote me about problem with our TV card BeholdTV Columbus. It's PCMCIA TV card for notebook. As I understand v4l has some regression with autodetect address of tuners. I can set incorrect I2C address and had report about detect tuner. No any TV of course. When I set correct tuner type and I2C address of the tuners all works well. Signed-off-by: Beholder Intl. Ltd. Dmitry Belimov With my best regards, Dmitry. diff -r eff98a88caf3 linux/drivers/media/video/saa7134/saa7134-cards.c --- a/linux/drivers/media/video/saa7134/saa7134-cards.c Thu Jun 24 05:14:22 2010 -0300 +++ b/linux/drivers/media/video/saa7134/saa7134-cards.c Sat Aug 21 10:38:28 2010 -0400 @@ -4362,13 +4362,13 @@ }, [SAA7134_BOARD_BEHOLD_COLUMBUS_TVFM] = { /* Beholder Intl. Ltd. 2008 */ - /*Dmitry Belimov */ - .name = "Beholder BeholdTV Columbus TVFM", + /* Dmitry Belimov */ + .name = "Beholder BeholdTV Columbus TV/FM", .audio_clock = 0x00187de7, .tuner_type = TUNER_ALPS_TSBE5_PAL, - .radio_type = UNSET, - .tuner_addr = ADDR_UNSET, - .radio_addr = ADDR_UNSET, + .radio_type = TUNER_TEA5767, + .tuner_addr = 0xc2 >> 1, + .radio_addr = 0xc0 >> 1, .tda9887_conf = TDA9887_PRESENT, .gpiomask = 0x000A8004, .inputs = {{ Signed-off-by: Beholder Intl. Ltd. Dmitry Belimov