All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Jonathan Neuschäfer" <j.neuschaefer@gmx.net>
To: linux-clk@vger.kernel.org
Cc: linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, linux-mips@vger.kernel.org,
	"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
	"Jonathan Neuschäfer" <j.neuschaefer@gmx.net>,
	"Keguang Zhang" <keguang.zhang@gmail.com>,
	"Michael Turquette" <mturquette@baylibre.com>,
	"Stephen Boyd" <sboyd@kernel.org>,
	"Yang Ling" <gnaygnil@gmail.com>
Subject: [PATCH v4 2/5] clk: loongson1: Terminate clk_div_table with sentinel element
Date: Fri, 18 Feb 2022 01:09:18 +0100	[thread overview]
Message-ID: <20220218000922.134857-3-j.neuschaefer@gmx.net> (raw)
In-Reply-To: <20220218000922.134857-1-j.neuschaefer@gmx.net>

In order that the end of a clk_div_table can be detected, it must be
terminated with a sentinel element (.div = 0).

Fixes: b4626a7f4892 ("CLK: Add Loongson1C clock support")
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---

v4:
- remove trailing comma

v3:
- no changes

v2:
- Add Fixes and R-b tags
---
 drivers/clk/loongson1/clk-loongson1c.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/loongson1/clk-loongson1c.c b/drivers/clk/loongson1/clk-loongson1c.c
index 703f87622cf5f..1ebf740380efb 100644
--- a/drivers/clk/loongson1/clk-loongson1c.c
+++ b/drivers/clk/loongson1/clk-loongson1c.c
@@ -37,6 +37,7 @@ static const struct clk_div_table ahb_div_table[] = {
 	[1] = { .val = 1, .div = 4 },
 	[2] = { .val = 2, .div = 3 },
 	[3] = { .val = 3, .div = 3 },
+	[4] = { /* sentinel */ }
 };

 void __init ls1x_clk_init(void)
--
2.34.1


WARNING: multiple messages have this Message-ID (diff)
From: "Jonathan Neuschäfer" <j.neuschaefer@gmx.net>
To: linux-clk@vger.kernel.org
Cc: linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, linux-mips@vger.kernel.org,
	"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
	"Jonathan Neuschäfer" <j.neuschaefer@gmx.net>,
	"Keguang Zhang" <keguang.zhang@gmail.com>,
	"Michael Turquette" <mturquette@baylibre.com>,
	"Stephen Boyd" <sboyd@kernel.org>,
	"Yang Ling" <gnaygnil@gmail.com>
Subject: [PATCH v4 2/5] clk: loongson1: Terminate clk_div_table with sentinel element
Date: Fri, 18 Feb 2022 01:09:18 +0100	[thread overview]
Message-ID: <20220218000922.134857-3-j.neuschaefer@gmx.net> (raw)
In-Reply-To: <20220218000922.134857-1-j.neuschaefer@gmx.net>

In order that the end of a clk_div_table can be detected, it must be
terminated with a sentinel element (.div = 0).

Fixes: b4626a7f4892 ("CLK: Add Loongson1C clock support")
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---

v4:
- remove trailing comma

v3:
- no changes

v2:
- Add Fixes and R-b tags
---
 drivers/clk/loongson1/clk-loongson1c.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/loongson1/clk-loongson1c.c b/drivers/clk/loongson1/clk-loongson1c.c
index 703f87622cf5f..1ebf740380efb 100644
--- a/drivers/clk/loongson1/clk-loongson1c.c
+++ b/drivers/clk/loongson1/clk-loongson1c.c
@@ -37,6 +37,7 @@ static const struct clk_div_table ahb_div_table[] = {
 	[1] = { .val = 1, .div = 4 },
 	[2] = { .val = 2, .div = 3 },
 	[3] = { .val = 3, .div = 3 },
+	[4] = { /* sentinel */ }
 };

 void __init ls1x_clk_init(void)
--
2.34.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2022-02-18  0:09 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-18  0:09 [PATCH v4 0/5] clk drivers: Terminate clk_div_table with sentinel element Jonathan Neuschäfer
2022-02-18  0:09 ` Jonathan Neuschäfer
2022-02-18  0:09 ` [PATCH v4 1/5] clk: actions: " Jonathan Neuschäfer
2022-02-18  0:09   ` Jonathan Neuschäfer
2022-03-12  2:16   ` Stephen Boyd
2022-03-12  2:16     ` Stephen Boyd
2022-02-18  0:09 ` Jonathan Neuschäfer [this message]
2022-02-18  0:09   ` [PATCH v4 2/5] clk: loongson1: " Jonathan Neuschäfer
2022-03-12  2:16   ` Stephen Boyd
2022-03-12  2:16     ` Stephen Boyd
2022-02-18  0:09 ` [PATCH v4 3/5] clk: hisilicon: " Jonathan Neuschäfer
2022-02-18  0:09   ` Jonathan Neuschäfer
2022-03-12  2:16   ` Stephen Boyd
2022-03-12  2:16     ` Stephen Boyd
2022-02-18  0:09 ` [PATCH v4 4/5] clk: clps711x: " Jonathan Neuschäfer
2022-02-18  0:09   ` Jonathan Neuschäfer
2022-03-12  2:16   ` Stephen Boyd
2022-03-12  2:16     ` Stephen Boyd
2022-02-18  0:09 ` [PATCH v4 5/5] clk: actions: Make sentinel elements more obvious Jonathan Neuschäfer
2022-02-18  0:09   ` Jonathan Neuschäfer
2022-03-12  2:17   ` Stephen Boyd
2022-03-12  2:17     ` Stephen Boyd

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220218000922.134857-3-j.neuschaefer@gmx.net \
    --to=j.neuschaefer@gmx.net \
    --cc=f4bug@amsat.org \
    --cc=gnaygnil@gmail.com \
    --cc=keguang.zhang@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=sboyd@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.