* [PATCH] ARM: imx6q: add missing sentinel to divider table
@ 2013-10-31 11:55 Lothar Waßmann
2013-10-31 12:04 ` Lothar Waßmann
2013-11-01 9:14 ` Shawn Guo
0 siblings, 2 replies; 3+ messages in thread
From: Lothar Waßmann @ 2013-10-31 11:55 UTC (permalink / raw)
To: linux-arm-kernel
The clk_enet_ref_table[] is missing a final empty entry as end of list
marker. Also make the existing markers more obvious.
Signed-off-by: Lothar Wa?mann <LW@KARO-electronics.de>
---
arch/arm/mach-imx/clk-imx6q.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c
index d756d91..8979470 100644
--- a/arch/arm/mach-imx/clk-imx6q.c
+++ b/arch/arm/mach-imx/clk-imx6q.c
@@ -122,13 +122,14 @@ static struct clk_div_table clk_enet_ref_table[] = {
{ .val = 1, .div = 10, },
{ .val = 2, .div = 5, },
{ .val = 3, .div = 4, },
+ { /* sentinel */ }
};
static struct clk_div_table post_div_table[] = {
{ .val = 2, .div = 1, },
{ .val = 1, .div = 2, },
{ .val = 0, .div = 4, },
- { }
+ { /* sentinel */ }
};
static struct clk_div_table video_div_table[] = {
@@ -136,7 +137,7 @@ static struct clk_div_table video_div_table[] = {
{ .val = 1, .div = 2, },
{ .val = 2, .div = 1, },
{ .val = 3, .div = 4, },
- { }
+ { /* sentinel */ }
};
static void __init imx6q_clocks_init(struct device_node *ccm_node)
--
1.7.2.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] ARM: imx6q: add missing sentinel to divider table
2013-10-31 11:55 [PATCH] ARM: imx6q: add missing sentinel to divider table Lothar Waßmann
@ 2013-10-31 12:04 ` Lothar Waßmann
2013-11-01 9:14 ` Shawn Guo
1 sibling, 0 replies; 3+ messages in thread
From: Lothar Waßmann @ 2013-10-31 12:04 UTC (permalink / raw)
To: linux-arm-kernel
Hi,
Lothar Wa?mann wrote:
> The clk_enet_ref_table[] is missing a final empty entry as end of list
> marker. Also make the existing markers more obvious.
> Signed-off-by: Lothar Wa?mann <LW@KARO-electronics.de>
> ---
> arch/arm/mach-imx/clk-imx6q.c | 5 +++--
>
There is something else that looks suspicious in this file:
The video_div_table[] has four entries:
| { .val = 0, .div = 1, },
| { .val = 1, .div = 2, },
| { .val = 2, .div = 1, },
| { .val = 3, .div = 4, },
But the code that sets the dividers to '1' as a workaround for the TO1.0
chip revision only two dividers are modified, one of which is already
'1':
|if (cpu_is_imx6q() && imx_get_soc_revision() == IMX_CHIP_REVISION_1_0) {
| post_div_table[1].div = 1;
| post_div_table[2].div = 1;
| video_div_table[1].div = 1;
| video_div_table[2].div = 1;
^
This probably should be '3' instead?
Lothar Wa?mann
--
___________________________________________________________
Ka-Ro electronics GmbH | Pascalstra?e 22 | D - 52076 Aachen
Phone: +49 2408 1402-0 | Fax: +49 2408 1402-10
Gesch?ftsf?hrer: Matthias Kaussen
Handelsregistereintrag: Amtsgericht Aachen, HRB 4996
www.karo-electronics.de | info at karo-electronics.de
___________________________________________________________
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] ARM: imx6q: add missing sentinel to divider table
2013-10-31 11:55 [PATCH] ARM: imx6q: add missing sentinel to divider table Lothar Waßmann
2013-10-31 12:04 ` Lothar Waßmann
@ 2013-11-01 9:14 ` Shawn Guo
1 sibling, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2013-11-01 9:14 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Oct 31, 2013 at 12:55:48PM +0100, Lothar Wa?mann wrote:
> The clk_enet_ref_table[] is missing a final empty entry as end of list
> marker. Also make the existing markers more obvious.
> Signed-off-by: Lothar Wa?mann <LW@KARO-electronics.de>
Please have a blank line between commit log and SoB in the later
patches.
Applied, thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-11-01 9:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-31 11:55 [PATCH] ARM: imx6q: add missing sentinel to divider table Lothar Waßmann
2013-10-31 12:04 ` Lothar Waßmann
2013-11-01 9:14 ` Shawn Guo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).