Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965277Ab2J3SR1 (ORCPT ); Tue, 30 Oct 2012 14:17:27 -0400 Received: from li42-95.members.linode.com ([209.123.162.95]:59052 "EHLO li42-95.members.linode.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933957Ab2J3SMn (ORCPT ); Tue, 30 Oct 2012 14:12:43 -0400 From: Pantelis Antoniou To: Paul Walmsley Cc: Pantelis Antoniou , Tony Lindgren , linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org, Koen Kooi , Matt Porter , Russ Dill Subject: [PATCH] omap2-clk: Add missing lcdc clock definition Date: Wed, 31 Oct 2012 17:56:02 +0200 Message-Id: <1351698962-3923-1-git-send-email-panto@antoniou-consulting.com> X-Mailer: git-send-email 1.7.12 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1557 Lines: 45 Looks like the lcdc clock definition got dropped. It is required for the LCD controller to work. Reintroduce. Signed-off-by: Pantelis Antoniou --- arch/arm/mach-omap2/clock33xx_data.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/arch/arm/mach-omap2/clock33xx_data.c b/arch/arm/mach-omap2/clock33xx_data.c index 1a45d6b..b7b7995 100644 --- a/arch/arm/mach-omap2/clock33xx_data.c +++ b/arch/arm/mach-omap2/clock33xx_data.c @@ -867,6 +867,16 @@ static struct clk lcd_gclk = { .recalc = &followparent_recalc, }; +static struct clk lcdc_fck = { + .name = "lcdc_fck", + .clkdm_name = "lcdc_clkdm", + .parent = &lcd_gclk, + .enable_reg = AM33XX_CM_PER_LCDC_CLKCTRL, + .enable_bit = AM33XX_MODULEMODE_SWCTRL, + .ops = &clkops_omap2_dflt, + .recalc = &followparent_recalc, +}; + static struct clk mmc_clk = { .name = "mmc_clk", .clkdm_name = "l4ls_clkdm", @@ -1075,6 +1085,7 @@ static struct omap_clk am33xx_clks[] = { CLK(NULL, "clkout2_ck", &clkout2_ck, CK_AM33XX), CLK(NULL, "timer_32k_ck", &clkdiv32k_ick, CK_AM33XX), CLK(NULL, "timer_sys_ck", &sys_clkin_ck, CK_AM33XX), + CLK("da8xx_lcdc.0", NULL, &lcdc_fck, CK_AM33XX), }; int __init am33xx_clk_init(void) -- 1.7.12 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/