linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 -next 0/3] Add missing MODULE_DEVICE_TABLE
@ 2021-04-09  8:23 Chen Hui
  2021-04-09  8:23 ` [PATCH v2 -next 1/3] clk: qcom: a7-pll: " Chen Hui
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Chen Hui @ 2021-04-09  8:23 UTC (permalink / raw)
  To: agross, bjorn.andersson, mturquette, sboyd, mani, georgi.djakov,
	sivaprak
  Cc: linux-arm-msm, linux-clk, linux-kernel

v2:
- separate from one patch into three patches
- add fixes tags

Chen Hui (3):
  clk: qcom: a7-pll: Add missing MODULE_DEVICE_TABLE
  clk: qcom: a53-pll: Add missing MODULE_DEVICE_TABLE
  clk: qcom: apss-ipq-pll: Add missing MODULE_DEVICE_TABLE

 drivers/clk/qcom/a53-pll.c      | 1 +
 drivers/clk/qcom/a7-pll.c       | 1 +
 drivers/clk/qcom/apss-ipq-pll.c | 1 +
 3 files changed, 3 insertions(+)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH v2 -next 1/3] clk: qcom: a7-pll: Add missing MODULE_DEVICE_TABLE
  2021-04-09  8:23 [PATCH v2 -next 0/3] Add missing MODULE_DEVICE_TABLE Chen Hui
@ 2021-04-09  8:23 ` Chen Hui
  2021-04-09 18:28   ` Stephen Boyd
  2021-04-09  8:23 ` [PATCH v2 -next 2/3] clk: qcom: a53-pll: " Chen Hui
  2021-04-09  8:23 ` [PATCH v2 -next 3/3] clk: qcom: apss-ipq-pll: " Chen Hui
  2 siblings, 1 reply; 7+ messages in thread
From: Chen Hui @ 2021-04-09  8:23 UTC (permalink / raw)
  To: agross, bjorn.andersson, mturquette, sboyd, mani, georgi.djakov,
	sivaprak
  Cc: linux-arm-msm, linux-clk, linux-kernel

CONFIG_QCOM_A7PLL is tristate option and therefore this driver can be
compiled as a module. This patch adds missing MODULE_DEVICE_TABLE
definition which generates correct modalias for automatic loading of
this driver when it is built as an external module.

Fixes: 5a5223ffd7ef ("clk: qcom: Add A7 PLL support")
Signed-off-by: Chen Hui <clare.chenhui@huawei.com>
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---
 drivers/clk/qcom/a7-pll.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/qcom/a7-pll.c b/drivers/clk/qcom/a7-pll.c
index e171d3caf2cf..c4a53e5db229 100644
--- a/drivers/clk/qcom/a7-pll.c
+++ b/drivers/clk/qcom/a7-pll.c
@@ -86,6 +86,7 @@ static const struct of_device_id qcom_a7pll_match_table[] = {
 	{ .compatible = "qcom,sdx55-a7pll" },
 	{ }
 };
+MODULE_DEVICE_TABLE(of, qcom_a7pll_match_table);
 
 static struct platform_driver qcom_a7pll_driver = {
 	.probe = qcom_a7pll_probe,
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v2 -next 2/3] clk: qcom: a53-pll: Add missing MODULE_DEVICE_TABLE
  2021-04-09  8:23 [PATCH v2 -next 0/3] Add missing MODULE_DEVICE_TABLE Chen Hui
  2021-04-09  8:23 ` [PATCH v2 -next 1/3] clk: qcom: a7-pll: " Chen Hui
@ 2021-04-09  8:23 ` Chen Hui
  2021-04-09 18:28   ` Stephen Boyd
  2021-04-09  8:23 ` [PATCH v2 -next 3/3] clk: qcom: apss-ipq-pll: " Chen Hui
  2 siblings, 1 reply; 7+ messages in thread
From: Chen Hui @ 2021-04-09  8:23 UTC (permalink / raw)
  To: agross, bjorn.andersson, mturquette, sboyd, mani, georgi.djakov,
	sivaprak
  Cc: linux-arm-msm, linux-clk, linux-kernel

CONFIG_QCOM_A53PLL is tristate option and therefore this driver can be
compiled as a module. This patch adds missing MODULE_DEVICE_TABLE
definition which generates correct modalias for automatic loading of
this driver when it is built as an external module.

Fixes: 0c6ab1b8f894 ("clk: qcom: Add A53 PLL support")
Signed-off-by: Chen Hui <clare.chenhui@huawei.com>
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---
 drivers/clk/qcom/a53-pll.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/qcom/a53-pll.c b/drivers/clk/qcom/a53-pll.c
index 45cfc57bff92..af6ac17c7dae 100644
--- a/drivers/clk/qcom/a53-pll.c
+++ b/drivers/clk/qcom/a53-pll.c
@@ -93,6 +93,7 @@ static const struct of_device_id qcom_a53pll_match_table[] = {
 	{ .compatible = "qcom,msm8916-a53pll" },
 	{ }
 };
+MODULE_DEVICE_TABLE(of, qcom_a53pll_match_table);
 
 static struct platform_driver qcom_a53pll_driver = {
 	.probe = qcom_a53pll_probe,
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v2 -next 3/3] clk: qcom: apss-ipq-pll: Add missing MODULE_DEVICE_TABLE
  2021-04-09  8:23 [PATCH v2 -next 0/3] Add missing MODULE_DEVICE_TABLE Chen Hui
  2021-04-09  8:23 ` [PATCH v2 -next 1/3] clk: qcom: a7-pll: " Chen Hui
  2021-04-09  8:23 ` [PATCH v2 -next 2/3] clk: qcom: a53-pll: " Chen Hui
@ 2021-04-09  8:23 ` Chen Hui
  2021-04-09 18:28   ` Stephen Boyd
  2 siblings, 1 reply; 7+ messages in thread
From: Chen Hui @ 2021-04-09  8:23 UTC (permalink / raw)
  To: agross, bjorn.andersson, mturquette, sboyd, mani, georgi.djakov,
	sivaprak
  Cc: linux-arm-msm, linux-clk, linux-kernel

CONFIG_IPQ_APSS_PLL is tristate option and therefore this driver can
be compiled as a module. This patch adds missing MODULE_DEVICE_TABLE
definition which generates correct modalias for automatic loading of
this driver when it is built as an external module.

Fixes: ecd2bacfbbc4 ("clk: qcom: Add ipq apss pll driver")
Signed-off-by: Chen Hui <clare.chenhui@huawei.com>
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---
 drivers/clk/qcom/apss-ipq-pll.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/qcom/apss-ipq-pll.c b/drivers/clk/qcom/apss-ipq-pll.c
index 30be87fb222a..bef7899ad0d6 100644
--- a/drivers/clk/qcom/apss-ipq-pll.c
+++ b/drivers/clk/qcom/apss-ipq-pll.c
@@ -81,6 +81,7 @@ static const struct of_device_id apss_ipq_pll_match_table[] = {
 	{ .compatible = "qcom,ipq6018-a53pll" },
 	{ }
 };
+MODULE_DEVICE_TABLE(of, apss_ipq_pll_match_table);
 
 static struct platform_driver apss_ipq_pll_driver = {
 	.probe = apss_ipq_pll_probe,
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 -next 1/3] clk: qcom: a7-pll: Add missing MODULE_DEVICE_TABLE
  2021-04-09  8:23 ` [PATCH v2 -next 1/3] clk: qcom: a7-pll: " Chen Hui
@ 2021-04-09 18:28   ` Stephen Boyd
  0 siblings, 0 replies; 7+ messages in thread
From: Stephen Boyd @ 2021-04-09 18:28 UTC (permalink / raw)
  To: Chen Hui, agross, bjorn.andersson, georgi.djakov, mani,
	mturquette, sivaprak
  Cc: linux-arm-msm, linux-clk, linux-kernel

Quoting Chen Hui (2021-04-09 01:23:50)
> CONFIG_QCOM_A7PLL is tristate option and therefore this driver can be
> compiled as a module. This patch adds missing MODULE_DEVICE_TABLE
> definition which generates correct modalias for automatic loading of
> this driver when it is built as an external module.
> 
> Fixes: 5a5223ffd7ef ("clk: qcom: Add A7 PLL support")
> Signed-off-by: Chen Hui <clare.chenhui@huawei.com>
> Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
> ---

Applied to clk-next

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 -next 2/3] clk: qcom: a53-pll: Add missing MODULE_DEVICE_TABLE
  2021-04-09  8:23 ` [PATCH v2 -next 2/3] clk: qcom: a53-pll: " Chen Hui
@ 2021-04-09 18:28   ` Stephen Boyd
  0 siblings, 0 replies; 7+ messages in thread
From: Stephen Boyd @ 2021-04-09 18:28 UTC (permalink / raw)
  To: Chen Hui, agross, bjorn.andersson, georgi.djakov, mani,
	mturquette, sivaprak
  Cc: linux-arm-msm, linux-clk, linux-kernel

Quoting Chen Hui (2021-04-09 01:23:51)
> CONFIG_QCOM_A53PLL is tristate option and therefore this driver can be
> compiled as a module. This patch adds missing MODULE_DEVICE_TABLE
> definition which generates correct modalias for automatic loading of
> this driver when it is built as an external module.
> 
> Fixes: 0c6ab1b8f894 ("clk: qcom: Add A53 PLL support")
> Signed-off-by: Chen Hui <clare.chenhui@huawei.com>
> Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
> ---

Applied to clk-next

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 -next 3/3] clk: qcom: apss-ipq-pll: Add missing MODULE_DEVICE_TABLE
  2021-04-09  8:23 ` [PATCH v2 -next 3/3] clk: qcom: apss-ipq-pll: " Chen Hui
@ 2021-04-09 18:28   ` Stephen Boyd
  0 siblings, 0 replies; 7+ messages in thread
From: Stephen Boyd @ 2021-04-09 18:28 UTC (permalink / raw)
  To: Chen Hui, agross, bjorn.andersson, georgi.djakov, mani,
	mturquette, sivaprak
  Cc: linux-arm-msm, linux-clk, linux-kernel

Quoting Chen Hui (2021-04-09 01:23:52)
> CONFIG_IPQ_APSS_PLL is tristate option and therefore this driver can
> be compiled as a module. This patch adds missing MODULE_DEVICE_TABLE
> definition which generates correct modalias for automatic loading of
> this driver when it is built as an external module.
> 
> Fixes: ecd2bacfbbc4 ("clk: qcom: Add ipq apss pll driver")
> Signed-off-by: Chen Hui <clare.chenhui@huawei.com>
> Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
> ---

Applied to clk-next

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-04-09 18:28 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-09  8:23 [PATCH v2 -next 0/3] Add missing MODULE_DEVICE_TABLE Chen Hui
2021-04-09  8:23 ` [PATCH v2 -next 1/3] clk: qcom: a7-pll: " Chen Hui
2021-04-09 18:28   ` Stephen Boyd
2021-04-09  8:23 ` [PATCH v2 -next 2/3] clk: qcom: a53-pll: " Chen Hui
2021-04-09 18:28   ` Stephen Boyd
2021-04-09  8:23 ` [PATCH v2 -next 3/3] clk: qcom: apss-ipq-pll: " Chen Hui
2021-04-09 18:28   ` Stephen Boyd

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).