From mboxrd@z Thu Jan 1 00:00:00 1970 From: rnayak@ti.com (Rajendra Nayak) Date: Fri, 25 Jan 2013 12:06:35 +0530 Subject: [PATCH] ARM: omap4: clock data: Add missing clkdm association for dpll_usb Message-ID: <1359095795-9538-1-git-send-email-rnayak@ti.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org dpll_usb needs the clkdm association so the clkdm can be turned on before a relock. All other dplls for omap4 belong to the ALWON (always on) domain. The association was present as part of the older data file (clock44xx_data.c) but looks like was accidently dropped with the common clk convertion. More details of the patch which fixed this up in the older data file can be dound here.. http://www.spinics.net/lists/linux-omap/msg63076.html Signed-off-by: Rajendra Nayak --- arch/arm/mach-omap2/cclock44xx_data.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-omap2/cclock44xx_data.c b/arch/arm/mach-omap2/cclock44xx_data.c index 5789a5e..fdea8da 100644 --- a/arch/arm/mach-omap2/cclock44xx_data.c +++ b/arch/arm/mach-omap2/cclock44xx_data.c @@ -601,6 +601,7 @@ static struct clk_hw_omap dpll_usb_ck_hw = { }, .dpll_data = &dpll_usb_dd, .ops = &clkhwops_omap3_dpll, + .clkdm_name = "l3_init_clkdm", }; DEFINE_STRUCT_CLK(dpll_usb_ck, dpll_usb_ck_parents, dpll_ck_ops); -- 1.7.9.5