From patchwork Sun Feb 21 20:10:36 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Ringel X-Patchwork-Id: 2774 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Sun, 21 Feb 2010 20:11:51 +0000 Received: from bombadil.infradead.org [18.85.46.34] by pedra with IMAP (fetchmail-6.3.6) for (single-drop); Sun, 21 Feb 2010 17:14:55 -0300 (BRT) Received: from vger.kernel.org ([209.132.180.67]) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1NjI9f-00070t-8K; Sun, 21 Feb 2010 20:11:51 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751571Ab0BUULt (ORCPT + 1 other); Sun, 21 Feb 2010 15:11:49 -0500 Received: from mail-in-09.arcor-online.net ([151.189.21.49]:37071 "EHLO mail-in-09.arcor-online.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752148Ab0BUULs (ORCPT ); Sun, 21 Feb 2010 15:11:48 -0500 Received: from mail-in-07-z2.arcor-online.net (mail-in-07-z2.arcor-online.net [151.189.8.19]) by mx.arcor.de (Postfix) with ESMTP id 29B471AF2BE; Sun, 21 Feb 2010 21:11:47 +0100 (CET) Received: from mail-in-16.arcor-online.net (mail-in-16.arcor-online.net [151.189.21.56]) by mail-in-07-z2.arcor-online.net (Postfix) with ESMTP id 1C5B42C7E0D; Sun, 21 Feb 2010 21:11:47 +0100 (CET) Received: from localhost.localdomain (dslb-188-103-172-103.pools.arcor-ip.net [188.103.172.103]) (Authenticated sender: stefan.ringel@arcor.de) by mail-in-16.arcor-online.net (Postfix) with ESMTPA id 8E77F257157; Sun, 21 Feb 2010 21:11:46 +0100 (CET) X-DKIM: Sendmail DKIM Filter v2.8.2 mail-in-16.arcor-online.net 8E77F257157 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arcor.de; s=mail-in; t=1266783107; bh=2mVkahBBPt0t0GvC7118izZ/18gt0NeIW6puEt3Xzbs=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=js7awgXu/2crY1M5G0qj5dsncO9opKQq/jjibg1rIClf48ykQyOFg7oDEaBXfv8X6 TNZCj84DRIYM2ctYWEv0qxqcTlqtAnXGTZ/IqpI2ZXmISxLDzBSoxVvqcK0JwBJHUv c0bxZxUxx8+1ve9zesQKtdiDHK0nMK5jK7fYm05A= From: stefan.ringel@arcor.de To: linux-media@vger.kernel.org Cc: mchehab@redhat.com, dheitmueller@kernellabs.com, Stefan Ringel Subject: [PATCH 3/3] tm6000: bugfix i2c addr Date: Sun, 21 Feb 2010 21:10:36 +0100 Message-Id: <1266783036-6549-3-git-send-email-stefan.ringel@arcor.de> X-Mailer: git-send-email 1.6.6.1 In-Reply-To: <1266783036-6549-2-git-send-email-stefan.ringel@arcor.de> References: <1266783036-6549-1-git-send-email-stefan.ringel@arcor.de> <1266783036-6549-2-git-send-email-stefan.ringel@arcor.de> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org From: Stefan Ringel Signed-off-by: Stefan Ringel --- drivers/staging/tm6000/tm6000-i2c.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/tm6000/tm6000-i2c.c b/drivers/staging/tm6000/tm6000-i2c.c index 6ae02b8..029cf74 100644 --- a/drivers/staging/tm6000/tm6000-i2c.c +++ b/drivers/staging/tm6000/tm6000-i2c.c @@ -125,7 +125,7 @@ static int tm6000_i2c_xfer(struct i2c_adapter *i2c_adap, i++; - if (addr == dev->tuner_addr) { + if (addr == dev->tuner_addr << 1) { tm6000_set_reg(dev, 0x32, 0,0); tm6000_set_reg(dev, 0x33, 0,0); } @@ -140,7 +140,7 @@ static int tm6000_i2c_xfer(struct i2c_adapter *i2c_adap, rc = tm6000_i2c_send_regs(dev, addr, msgs[i].buf[0], msgs[i].buf + 1, msgs[i].len - 1); - if (addr == dev->tuner_addr) { + if (addr == dev->tuner_addr << 1) { tm6000_set_reg(dev, 0x32, 0,0); tm6000_set_reg(dev, 0x33, 0,0); }