From patchwork Thu Jun 20 16:46:36 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Shiyan X-Patchwork-Id: 2757271 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 31405C0AB1 for ; Thu, 20 Jun 2013 16:48:07 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 160C120462 for ; Thu, 20 Jun 2013 16:48:06 +0000 (UTC) Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id A536A20458 for ; Thu, 20 Jun 2013 16:48:04 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1Upi1K-0003Aj-7w; Thu, 20 Jun 2013 16:47:39 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1Upi14-00046d-7F; Thu, 20 Jun 2013 16:47:22 +0000 Received: from smtp44.i.mail.ru ([94.100.177.104]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1Upi10-00046A-Tg for linux-arm-kernel@lists.infradead.org; Thu, 20 Jun 2013 16:47:20 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mail.ru; s=mail2; h=Message-Id:Date:Subject:Cc:To:From; bh=Tqh2iFI41iWDLO1yN3QX2u6UWbn8uodkOcrbTRpUWec=; b=VCDdlJ48RRSqVL62g1EvFNK+P/kmT7AyYCwl8OxGF+RKqwaLITbqP8PR0h6qSTrfAyCoICloUspXww7rBSKYFbhLCLYZBpSINxYzp0/zySXUPtdHkydS8qWZINg/Ar6wpsa8NkoVFWJ9H4yP+qnb7WQjygAd5cDIpOMQHe5Bovc=; Received: from [188.134.40.128] (port=4035 helo=shc.zet) by smtp44.i.mail.ru with esmtpa (envelope-from ) id 1Upi0a-00045T-4x; Thu, 20 Jun 2013 20:46:52 +0400 From: Alexander Shiyan To: linux-media@vger.kernel.org Subject: [PATCH RESEND] media: coda: Fix DT-driver data pointer for i.MX27 Date: Thu, 20 Jun 2013 20:46:36 +0400 Message-Id: <1371746796-16123-1-git-send-email-shc_work@mail.ru> X-Mailer: git-send-email 1.8.1.5 X-Mras: Ok X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130620_124719_442340_B8578E6F X-CRM114-Status: UNSURE ( 8.86 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -2.0 (--) Cc: Philipp Zabel , Alexander Shiyan , Javier Martin , Sascha Hauer , Shawn Guo , linux-arm-kernel@lists.infradead.org, Mauro Carvalho Chehab X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-5.4 required=5.0 tests=BAYES_00,DKIM_SIGNED, FREEMAIL_FROM,RCVD_IN_DNSWL_MED,RP_MATCHES_RCVD,T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Alexander Shiyan Acked-by: Philipp Zabel --- drivers/media/platform/coda.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/platform/coda.c b/drivers/media/platform/coda.c index 48b8d7a..1c77781 100644 --- a/drivers/media/platform/coda.c +++ b/drivers/media/platform/coda.c @@ -1924,7 +1924,7 @@ MODULE_DEVICE_TABLE(platform, coda_platform_ids); #ifdef CONFIG_OF static const struct of_device_id coda_dt_ids[] = { - { .compatible = "fsl,imx27-vpu", .data = &coda_platform_ids[CODA_IMX27] }, + { .compatible = "fsl,imx27-vpu", .data = &coda_devdata[CODA_IMX27] }, { .compatible = "fsl,imx53-vpu", .data = &coda_devdata[CODA_IMX53] }, { /* sentinel */ } };