projects
/
kernel
/
kernel-generic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51e888d
)
OMAP3: clock: add clockdomains for UART1 & 2
author
Kevin Hilman
<khilman@deeprootsystems.com>
Fri, 8 Jan 2010 22:23:06 +0000
(15:23 -0700)
committer
Paul Walmsley
<paul@pwsan.com>
Fri, 8 Jan 2010 22:23:06 +0000
(15:23 -0700)
UART1 & 2 were missing clockdomains resulting in broken omap_hwmod
init for these devices.
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
arch/arm/mach-omap2/clock34xx_data.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-omap2/clock34xx_data.c
b/arch/arm/mach-omap2/clock34xx_data.c
index
8bdcc9c
..
c60b19a
100644
(file)
--- a/
arch/arm/mach-omap2/clock34xx_data.c
+++ b/
arch/arm/mach-omap2/clock34xx_data.c
@@
-1500,6
+1500,7
@@
static struct clk uart2_fck = {
.parent = &core_48m_fck,
.enable_reg = OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
.enable_bit = OMAP3430_EN_UART2_SHIFT,
+ .clkdm_name = "core_l4_clkdm",
.recalc = &followparent_recalc,
};
@@
-1509,6
+1510,7
@@
static struct clk uart1_fck = {
.parent = &core_48m_fck,
.enable_reg = OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
.enable_bit = OMAP3430_EN_UART1_SHIFT,
+ .clkdm_name = "core_l4_clkdm",
.recalc = &followparent_recalc,
};