From patchwork Thu Apr 4 13:45:41 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bastian Hecht X-Patchwork-Id: 2392951 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 727B63FD1A for ; Thu, 4 Apr 2013 13:45:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760454Ab3DDNpu (ORCPT ); Thu, 4 Apr 2013 09:45:50 -0400 Received: from mail-bk0-f48.google.com ([209.85.214.48]:56584 "EHLO mail-bk0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760432Ab3DDNpt (ORCPT ); Thu, 4 Apr 2013 09:45:49 -0400 Received: by mail-bk0-f48.google.com with SMTP id jf3so1537722bkc.35 for ; Thu, 04 Apr 2013 06:45:48 -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=khJY4P9AEccO3+uzizflWWfdXB/2K5pNYLKxNR6tWMs=; b=RStERswuFIiSJ/KuFgYwZdSGbNGYNHxLbVXoc1vRGqlNcpnxWYlO/gpOH5FVWUHpfH kKwfK0f+2z8YhTMwacJqNBU7/Cw3wxMuyPeN4movmWaKhQK1b8wHk51bRDlIPjRnOQOR B0fLaoQBk7bv6lt98RY4SDF3X4eNKktJoOSVaOYB5wkfLdwlnDU8ICtVFue8n7giH4c/ lLkrEuNobAywHRv1kgAS8s3OTASlgym+XU0DhCxY04AOR1XuK9F+A0uf1FVFhRlROLue c++Ik718PqCliONh1buyyqDcjRFnwr5/RtQRZ8jKdFKQYRJUlVjzB2RhB6psGDTGpF22 EIwg== X-Received: by 10.205.7.72 with SMTP id on8mr4412856bkb.122.1365083148228; Thu, 04 Apr 2013 06:45:48 -0700 (PDT) Received: from localhost.localdomain (p4FD22916.dip.t-dialin.net. [79.210.41.22]) by mx.google.com with ESMTPS id jt9sm6074144bkb.18.2013.04.04.06.45.47 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 04 Apr 2013 06:45:47 -0700 (PDT) From: Bastian Hecht To: linux-sh@vger.kernel.org Cc: Magnus Damm , Simon Horman , Laurent Pichart , Bastian Hecht Subject: [PATCH 3/6] ARM: shmobile: r8a7740: Add I2C DT clock names Date: Thu, 4 Apr 2013 15:45:41 +0200 Message-Id: <1365083144-16085-3-git-send-email-hechtb+renesas@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1365083144-16085-1-git-send-email-hechtb+renesas@gmail.com> References: <1365083144-16085-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 --- 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 c0d39aa..d4fdb56 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]),