From patchwork Sat Aug 14 15:39:01 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tarun Kanti DebBarma X-Patchwork-Id: 119560 X-Patchwork-Delegate: khilman@deeprootsystems.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o7E4dmC8006899 for ; Sat, 14 Aug 2010 04:39:48 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932782Ab0HNEjs (ORCPT ); Sat, 14 Aug 2010 00:39:48 -0400 Received: from arroyo.ext.ti.com ([192.94.94.40]:52910 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932692Ab0HNEjr (ORCPT ); Sat, 14 Aug 2010 00:39:47 -0400 Received: from dbdp31.itg.ti.com ([172.24.170.98]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id o7E4dglv002067 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 13 Aug 2010 23:39:45 -0500 Received: from localhost.localdomain (localhost [127.0.0.1]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id o7E4dfMD028774; Sat, 14 Aug 2010 10:09:42 +0530 (IST) From: Tarun Kanti DebBarma To: linux-omap@vger.kernel.org Cc: Partha Basak , Thara Gopinath , Rajendra Nayak , Tarun Kanti DebBarma , Paul Walmsley , Kevin Hilman , Tony Lindgren Subject: [PATCHv2 1/13] dmtimer: hwmod: OMAP4: add device names to flck nodes Date: Sat, 14 Aug 2010 21:09:01 +0530 Message-Id: <1281800341-15260-1-git-send-email-tarun.kanti@ti.com> X-Mailer: git-send-email 1.6.0.4 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Sat, 14 Aug 2010 04:39:49 +0000 (UTC) diff --git a/arch/arm/mach-omap2/clock44xx_data.c b/arch/arm/mach-omap2/clock44xx_data.c index a0e369e..24e4dc3 --- a/arch/arm/mach-omap2/clock44xx_data.c +++ b/arch/arm/mach-omap2/clock44xx_data.c @@ -2574,17 +2574,17 @@ static struct omap_clk omap44xx_clks[] = { CLK(NULL, "smartreflex_core_fck", &smartreflex_core_fck, CK_443X), CLK(NULL, "smartreflex_iva_fck", &smartreflex_iva_fck, CK_443X), CLK(NULL, "smartreflex_mpu_fck", &smartreflex_mpu_fck, CK_443X), - CLK(NULL, "gpt1_fck", &timer1_fck, CK_443X), - CLK(NULL, "gpt10_fck", &timer10_fck, CK_443X), - CLK(NULL, "gpt11_fck", &timer11_fck, CK_443X), - CLK(NULL, "gpt2_fck", &timer2_fck, CK_443X), - CLK(NULL, "gpt3_fck", &timer3_fck, CK_443X), - CLK(NULL, "gpt4_fck", &timer4_fck, CK_443X), - CLK(NULL, "gpt5_fck", &timer5_fck, CK_443X), - CLK(NULL, "gpt6_fck", &timer6_fck, CK_443X), - CLK(NULL, "gpt7_fck", &timer7_fck, CK_443X), - CLK(NULL, "gpt8_fck", &timer8_fck, CK_443X), - CLK(NULL, "gpt9_fck", &timer9_fck, CK_443X), + CLK("dmtimer.0", "fck", &timer1_fck, CK_443X), + CLK("dmtimer.9", "fck", &timer10_fck, CK_443X), + CLK("dmtimer.10", "fck", &timer11_fck, CK_443X), + CLK("dmtimer.1", "fck", &timer2_fck, CK_443X), + CLK("dmtimer.2", "fck", &timer3_fck, CK_443X), + CLK("dmtimer.3", "fck", &timer4_fck, CK_443X), + CLK("dmtimer.4", "fck", &timer5_fck, CK_443X), + CLK("dmtimer.5", "fck", &timer6_fck, CK_443X), + CLK("dmtimer.6", "fck", &timer7_fck, CK_443X), + CLK("dmtimer.7", "fck", &timer8_fck, CK_443X), + CLK("dmtimer.8", "fck", &timer9_fck, CK_443X), CLK(NULL, "uart1_fck", &uart1_fck, CK_443X), CLK(NULL, "uart2_fck", &uart2_fck, CK_443X), CLK(NULL, "uart3_fck", &uart3_fck, CK_443X),