From patchwork Wed Apr 17 10:34:03 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bastian Hecht X-Patchwork-Id: 2453061 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 4D5C73FC64 for ; Wed, 17 Apr 2013 11:34:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965956Ab3DQLeG (ORCPT ); Wed, 17 Apr 2013 07:34:06 -0400 Received: from mail-bk0-f52.google.com ([209.85.214.52]:58380 "EHLO mail-bk0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754645Ab3DQLeF (ORCPT ); Wed, 17 Apr 2013 07:34:05 -0400 Received: by mail-bk0-f52.google.com with SMTP id it16so713799bkc.39 for ; Wed, 17 Apr 2013 04:34:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=tJgGeZOf67HVGKKS8RWDT7MrVySO00kFC9uyYo3EYxo=; b=x2DvckYea71JfCyBfzS1zzSNPXaxBt+V6Hj6rDIk7VAtBm/vzabhu9lLBL5z3kwW33 EsZfcFtwcjNipP9X17RdVVPcw1f3wKJQ1FebrwYCtu3409XpbGCPPC2G5IEYkyF/k6Eb EHCDqn/scnmAH3wqwO1HOpkYkM7lXa1KMl9gbo9WVottXQOnouxfzr6aumhz9pB9FExU 2vSsyu1Cew9LvrLdfD/0AuRaGe3dmBrIWh7NKnEFeTI/wGEL3H1q9UfYdYNY0chjMYAp Uys9Z1MwonZ/PcG1obmhAd8LgyVGUdWlx9EtPI5JGJoubjL+c0ez6LG8IueUGtUK09rV l9Gw== X-Received: by 10.204.57.13 with SMTP id a13mr2135582bkh.63.1366198444628; Wed, 17 Apr 2013 04:34:04 -0700 (PDT) Received: from localhost.localdomain (g229254233.adsl.alicedsl.de. [92.229.254.233]) by mx.google.com with ESMTPS id ej2sm1993713bkb.14.2013.04.17.04.34.03 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 17 Apr 2013 04:34:04 -0700 (PDT) From: Bastian Hecht To: linux-sh@vger.kernel.org Cc: Magnus Damm , Laurent Pichart , Simon Horman , Kuninori Morimoto Subject: [PATCH v2 3/6] ARM: shmobile: r8a7740: Add I2C DT clock names Date: Wed, 17 Apr 2013 12:34:03 +0200 Message-Id: <1366194847-9879-3-git-send-email-hechtb+renesas@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1366194847-9879-1-git-send-email-hechtb+renesas@gmail.com> References: <1366194847-9879-1-git-send-email-hechtb+renesas@gmail.com> Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org Add clock association for i2c0 and i2c1 for the new DT names. Signed-off-by: Bastian Hecht --- v2: same arch/arm/mach-shmobile/clock-r8a7740.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/mach-shmobile/clock-r8a7740.c b/arch/arm/mach-shmobile/clock-r8a7740.c index 5bd8da0..633307d 100644 --- a/arch/arm/mach-shmobile/clock-r8a7740.c +++ b/arch/arm/mach-shmobile/clock-r8a7740.c @@ -551,6 +551,7 @@ static struct clk_lookup lookups[] = { CLKDEV_DEV_ID("sh_tmu.4", &mstp_clks[MSTP111]), CLKDEV_DEV_ID("sh_tmu.5", &mstp_clks[MSTP111]), CLKDEV_DEV_ID("i2c-sh_mobile.0", &mstp_clks[MSTP116]), + CLKDEV_DEV_ID("fff20000.i2c", &mstp_clks[MSTP116]), CLKDEV_DEV_ID("sh_mobile_lcdc_fb.1", &mstp_clks[MSTP117]), CLKDEV_DEV_ID("sh_tmu.0", &mstp_clks[MSTP125]), CLKDEV_DEV_ID("sh_tmu.1", &mstp_clks[MSTP125]), @@ -584,6 +585,7 @@ static struct clk_lookup lookups[] = { CLKDEV_DEV_ID("sh_cmt.10", &mstp_clks[MSTP329]), CLKDEV_DEV_ID("sh_fsi2", &mstp_clks[MSTP328]), CLKDEV_DEV_ID("i2c-sh_mobile.1", &mstp_clks[MSTP323]), + CLKDEV_DEV_ID("e6c20000.i2c", &mstp_clks[MSTP323]), CLKDEV_DEV_ID("renesas_usbhs", &mstp_clks[MSTP320]), CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP314]), CLKDEV_DEV_ID("e6850000.sdhi", &mstp_clks[MSTP314]),