From patchwork Mon May 10 16:22:50 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Ringel X-Patchwork-Id: 3369 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Mon, 10 May 2010 16:24:45 +0000 Received: from bombadil.infradead.org [18.85.46.34] by pedra with IMAP (fetchmail-6.3.6) for (single-drop); Mon, 10 May 2010 13:27:14 -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 1OBVmQ-0007OM-Cz; Mon, 10 May 2010 16:24:33 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751994Ab0EJQY2 (ORCPT + 1 other); Mon, 10 May 2010 12:24:28 -0400 Received: from mail-in-08.arcor-online.net ([151.189.21.48]:42292 "EHLO mail-in-08.arcor-online.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751415Ab0EJQY1 (ORCPT ); Mon, 10 May 2010 12:24:27 -0400 Received: from mail-in-05-z2.arcor-online.net (mail-in-05-z2.arcor-online.net [151.189.8.17]) by mx.arcor.de (Postfix) with ESMTP id 99FB52054EA; Mon, 10 May 2010 18:24:26 +0200 (CEST) Received: from mail-in-13.arcor-online.net (mail-in-13.arcor-online.net [151.189.21.53]) by mail-in-05-z2.arcor-online.net (Postfix) with ESMTP id 90ECA2DCEBF; Mon, 10 May 2010 18:24:26 +0200 (CEST) Received: from localhost.localdomain (dslb-188-102-102-228.pools.arcor-ip.net [188.102.102.228]) (Authenticated sender: stefan.ringel@arcor.de) by mail-in-13.arcor-online.net (Postfix) with ESMTPA id 08334212625; Mon, 10 May 2010 18:24:25 +0200 (CEST) X-DKIM: Sendmail DKIM Filter v2.8.2 mail-in-13.arcor-online.net 08334212625 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arcor.de; s=mail-in; t=1273508666; bh=PFeyGvnf1S1hcmp2zi76Ct+YHu5gJG9lPgwtCkJOcw4=; h=From:To:Cc:Subject:Date:Message-Id; b=ZYQTbE6fRToZNiOuGEjS6vXgg++aIi/rEAnI6bEMi0XVvsSDAXJbbdNqOSMKuCCOW PEwD5vlepAjy6xG1v264MWhGqpC4lr/OlGxZTAXrGUcjUJHquOlqfNTGa7wbgXqtCF Lm8bcjT0fye3Lm6o4qthj/5uPkM1VOewv8m2aanQ= From: stefan.ringel@arcor.de To: linux-media@vger.kernel.org Cc: mchehab@redhat.com, Stefan Ringel Subject: [PATCH 1/2] tm6000: bugfix tuner callback Date: Mon, 10 May 2010 18:22:50 +0200 Message-Id: <1273508571-16472-1-git-send-email-stefan.ringel@arcor.de> X-Mailer: git-send-email 1.7.0.3 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-cards.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/staging/tm6000/tm6000-cards.c b/drivers/staging/tm6000/tm6000-cards.c index 6143e20..9f6160b 100644 --- a/drivers/staging/tm6000/tm6000-cards.c +++ b/drivers/staging/tm6000/tm6000-cards.c @@ -563,7 +563,7 @@ static void tm6000_config_tuner(struct tm6000_core *dev) switch (dev->tuner_type) { case TUNER_XC2028: - tun_setup.tuner_callback = tm6000_tuner_callback;; + tun_setup.tuner_callback = tm6000_tuner_callback; break; case TUNER_XC5000: tun_setup.tuner_callback = tm6000_xc5000_callback;