* [PATCH] 34XX: Fix to use correct shift values for gpio2-6 fclks
@ 2008-03-26 11:57 Jouni Högander
2008-03-26 20:25 ` Paul Walmsley
0 siblings, 1 reply; 4+ messages in thread
From: Jouni Högander @ 2008-03-26 11:57 UTC (permalink / raw)
To: linux-omap
Wrong shift values were used for gpio2-6 fclks (gpt2-6 shift).
---
arch/arm/mach-omap2/clock34xx.h | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/arch/arm/mach-omap2/clock34xx.h b/arch/arm/mach-omap2/clock34xx.h
index 3fda2c5..a6a3ed5 100644
--- a/arch/arm/mach-omap2/clock34xx.h
+++ b/arch/arm/mach-omap2/clock34xx.h
@@ -2357,7 +2357,7 @@ static struct clk gpio6_fck = {
.name = "gpio6_fck",
.parent = &per_32k_alwon_fck,
.enable_reg = OMAP_CM_REGADDR(OMAP3430_PER_MOD, CM_FCLKEN),
- .enable_bit = OMAP3430_EN_GPT6_SHIFT,
+ .enable_bit = OMAP3430_EN_GPIO6_SHIFT,
.flags = CLOCK_IN_OMAP343X,
.recalc = &followparent_recalc,
};
@@ -2366,7 +2366,7 @@ static struct clk gpio5_fck = {
.name = "gpio5_fck",
.parent = &per_32k_alwon_fck,
.enable_reg = OMAP_CM_REGADDR(OMAP3430_PER_MOD, CM_FCLKEN),
- .enable_bit = OMAP3430_EN_GPT5_SHIFT,
+ .enable_bit = OMAP3430_EN_GPIO5_SHIFT,
.flags = CLOCK_IN_OMAP343X,
.recalc = &followparent_recalc,
};
@@ -2375,7 +2375,7 @@ static struct clk gpio4_fck = {
.name = "gpio4_fck",
.parent = &per_32k_alwon_fck,
.enable_reg = OMAP_CM_REGADDR(OMAP3430_PER_MOD, CM_FCLKEN),
- .enable_bit = OMAP3430_EN_GPT4_SHIFT,
+ .enable_bit = OMAP3430_EN_GPIO4_SHIFT,
.flags = CLOCK_IN_OMAP343X,
.recalc = &followparent_recalc,
};
@@ -2384,7 +2384,7 @@ static struct clk gpio3_fck = {
.name = "gpio3_fck",
.parent = &per_32k_alwon_fck,
.enable_reg = OMAP_CM_REGADDR(OMAP3430_PER_MOD, CM_FCLKEN),
- .enable_bit = OMAP3430_EN_GPT3_SHIFT,
+ .enable_bit = OMAP3430_EN_GPIO3_SHIFT,
.flags = CLOCK_IN_OMAP343X,
.recalc = &followparent_recalc,
};
@@ -2393,7 +2393,7 @@ static struct clk gpio2_fck = {
.name = "gpio2_fck",
.parent = &per_32k_alwon_fck,
.enable_reg = OMAP_CM_REGADDR(OMAP3430_PER_MOD, CM_FCLKEN),
- .enable_bit = OMAP3430_EN_GPT2_SHIFT,
+ .enable_bit = OMAP3430_EN_GPIO2_SHIFT,
.flags = CLOCK_IN_OMAP343X,
.recalc = &followparent_recalc,
};
--
1.5.3.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] 34XX: Fix to use correct shift values for gpio2-6 fclks
2008-03-26 11:57 [PATCH] 34XX: Fix to use correct shift values for gpio2-6 fclks Jouni Högander
@ 2008-03-26 20:25 ` Paul Walmsley
2008-03-28 10:39 ` Tony Lindgren
0 siblings, 1 reply; 4+ messages in thread
From: Paul Walmsley @ 2008-03-26 20:25 UTC (permalink / raw)
To: Jouni Högander; +Cc: linux-omap
[-- Attachment #1: Type: TEXT/PLAIN, Size: 297 bytes --]
On Wed, 26 Mar 2008, Jouni Högander wrote:
> Wrong shift values were used for gpio2-6 fclks (gpt2-6 shift).
> ---
> arch/arm/mach-omap2/clock34xx.h | 10 +++++-----
> 1 files changed, 5 insertions(+), 5 deletions(-)
Acked-by: Paul Walmsley <paul@pwsan.com>
thanks Jouni,
- Paul
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] 34XX: Fix to use correct shift values for gpio2-6 fclks
2008-03-26 20:25 ` Paul Walmsley
@ 2008-03-28 10:39 ` Tony Lindgren
2008-03-28 12:57 ` Jouni Högander
0 siblings, 1 reply; 4+ messages in thread
From: Tony Lindgren @ 2008-03-28 10:39 UTC (permalink / raw)
To: Paul Walmsley; +Cc: Jouni Högander, linux-omap
* Paul Walmsley <paul@pwsan.com> [080326 22:33]:
> On Wed, 26 Mar 2008, Jouni Högander wrote:
>
> > Wrong shift values were used for gpio2-6 fclks (gpt2-6 shift).
> > ---
> > arch/arm/mach-omap2/clock34xx.h | 10 +++++-----
> > 1 files changed, 5 insertions(+), 5 deletions(-)
>
> Acked-by: Paul Walmsley <paul@pwsan.com>
>
> thanks Jouni,
Jouni, can you please repost with proper Signed-off-by?
Thanks,
Tony
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] 34XX: Fix to use correct shift values for gpio2-6 fclks
2008-03-28 10:39 ` Tony Lindgren
@ 2008-03-28 12:57 ` Jouni Högander
0 siblings, 0 replies; 4+ messages in thread
From: Jouni Högander @ 2008-03-28 12:57 UTC (permalink / raw)
To: linux-omap
Wrong shift values were used for gpio2-6 fclks (gpt2-6 shift).
Signed-off-by: Jouni Högander <jouni.hogander@nokia.com>
---
arch/arm/mach-omap2/clock34xx.h | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/arch/arm/mach-omap2/clock34xx.h b/arch/arm/mach-omap2/clock34xx.h
index 3fda2c5..a6a3ed5 100644
--- a/arch/arm/mach-omap2/clock34xx.h
+++ b/arch/arm/mach-omap2/clock34xx.h
@@ -2357,7 +2357,7 @@ static struct clk gpio6_fck = {
.name = "gpio6_fck",
.parent = &per_32k_alwon_fck,
.enable_reg = OMAP_CM_REGADDR(OMAP3430_PER_MOD, CM_FCLKEN),
- .enable_bit = OMAP3430_EN_GPT6_SHIFT,
+ .enable_bit = OMAP3430_EN_GPIO6_SHIFT,
.flags = CLOCK_IN_OMAP343X,
.recalc = &followparent_recalc,
};
@@ -2366,7 +2366,7 @@ static struct clk gpio5_fck = {
.name = "gpio5_fck",
.parent = &per_32k_alwon_fck,
.enable_reg = OMAP_CM_REGADDR(OMAP3430_PER_MOD, CM_FCLKEN),
- .enable_bit = OMAP3430_EN_GPT5_SHIFT,
+ .enable_bit = OMAP3430_EN_GPIO5_SHIFT,
.flags = CLOCK_IN_OMAP343X,
.recalc = &followparent_recalc,
};
@@ -2375,7 +2375,7 @@ static struct clk gpio4_fck = {
.name = "gpio4_fck",
.parent = &per_32k_alwon_fck,
.enable_reg = OMAP_CM_REGADDR(OMAP3430_PER_MOD, CM_FCLKEN),
- .enable_bit = OMAP3430_EN_GPT4_SHIFT,
+ .enable_bit = OMAP3430_EN_GPIO4_SHIFT,
.flags = CLOCK_IN_OMAP343X,
.recalc = &followparent_recalc,
};
@@ -2384,7 +2384,7 @@ static struct clk gpio3_fck = {
.name = "gpio3_fck",
.parent = &per_32k_alwon_fck,
.enable_reg = OMAP_CM_REGADDR(OMAP3430_PER_MOD, CM_FCLKEN),
- .enable_bit = OMAP3430_EN_GPT3_SHIFT,
+ .enable_bit = OMAP3430_EN_GPIO3_SHIFT,
.flags = CLOCK_IN_OMAP343X,
.recalc = &followparent_recalc,
};
@@ -2393,7 +2393,7 @@ static struct clk gpio2_fck = {
.name = "gpio2_fck",
.parent = &per_32k_alwon_fck,
.enable_reg = OMAP_CM_REGADDR(OMAP3430_PER_MOD, CM_FCLKEN),
- .enable_bit = OMAP3430_EN_GPT2_SHIFT,
+ .enable_bit = OMAP3430_EN_GPIO2_SHIFT,
.flags = CLOCK_IN_OMAP343X,
.recalc = &followparent_recalc,
};
--
1.5.3.5
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-03-28 13:01 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-26 11:57 [PATCH] 34XX: Fix to use correct shift values for gpio2-6 fclks Jouni Högander
2008-03-26 20:25 ` Paul Walmsley
2008-03-28 10:39 ` Tony Lindgren
2008-03-28 12:57 ` Jouni Högander
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox