From patchwork Fri Jul 29 10:56:20 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Guennadi Liakhovetski X-Patchwork-Id: 1019802 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p6TAvbIo007729 for ; Fri, 29 Jul 2011 10:57:37 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756383Ab1G2K5f (ORCPT ); Fri, 29 Jul 2011 06:57:35 -0400 Received: from moutng.kundenserver.de ([212.227.126.186]:52172 "EHLO moutng.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755659Ab1G2K5H (ORCPT ); Fri, 29 Jul 2011 06:57:07 -0400 Received: from axis700.grange (dslb-084-061-105-216.pools.arcor-ip.net [84.61.105.216]) by mrelayeu.kundenserver.de (node=mreu3) with ESMTP (Nemesis) id 0Mgltb-1R0pkg491L-00NzwO; Fri, 29 Jul 2011 12:57:02 +0200 Received: from 6a.grange (6a.grange [192.168.1.11]) by axis700.grange (Postfix) with ESMTPS id BCFD718B044; Fri, 29 Jul 2011 12:57:00 +0200 (CEST) Received: from lyakh by 6a.grange with local (Exim 4.72) (envelope-from ) id 1QmkkW-0007nw-ID; Fri, 29 Jul 2011 12:57:00 +0200 From: Guennadi Liakhovetski To: linux-media@vger.kernel.org Cc: Paul Mundt Subject: [PATCH 20/59] ARM: ap4evb: switch imx074 configuration to default number of lanes Date: Fri, 29 Jul 2011 12:56:20 +0200 Message-Id: <1311937019-29914-21-git-send-email-g.liakhovetski@gmx.de> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1311937019-29914-1-git-send-email-g.liakhovetski@gmx.de> References: <1311937019-29914-1-git-send-email-g.liakhovetski@gmx.de> X-Provags-ID: V02:K0:uO78HdX4ciumPVhw7Q3mUElI81Z905kKt918AwN3yUL eO0yMiFeG1z/MfHHI8m/rkJO7c5EEe4Ib+yLRpZCVHyhuQo8Gn OFmllbSBsl38BfjKT0PJLOIJWWAeZd3CWDgqMTCU+EoDV+fjk+ Nss7vqhnenhUPFY5bluPLh5iJnVJqb6KII4luzEYu2xj0lIAs0 tIhT9If1h0ntZyrVdU2PZebPlvHeUTW2tAS7bMsg6w= Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Fri, 29 Jul 2011 10:57:37 +0000 (UTC) The sh_mobile_csi2 driver will change meaning of the .lanes platform data field from "bitmask of used lanes" to "number of used lanes." To avoid a regression during this transition switch ap4evb to rely on the 2 lane default. Signed-off-by: Guennadi Liakhovetski Cc: Paul Mundt --- arch/arm/mach-shmobile/board-ap4evb.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-shmobile/board-ap4evb.c b/arch/arm/mach-shmobile/board-ap4evb.c index 67b3d0b..47151dc 100644 --- a/arch/arm/mach-shmobile/board-ap4evb.c +++ b/arch/arm/mach-shmobile/board-ap4evb.c @@ -931,7 +931,7 @@ static struct platform_device ap4evb_camera = { static struct sh_csi2_client_config csi2_clients[] = { { .phy = SH_CSI2_PHY_MAIN, - .lanes = 3, + .lanes = 0, /* default: 2 lanes */ .channel = 0, .pdev = &ap4evb_camera, },