Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
* [PATCH 1/2] regulator: qcom-refgen: fix module autoloading
@ 2024-04-10 17:26 Krzysztof Kozlowski
  2024-04-10 17:26 ` [PATCH 2/2] regulator: vqmmc-ipq4019: " Krzysztof Kozlowski
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2024-04-10 17:26 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Liam Girdwood, Mark Brown,
	Robert Marko, Luka Perkov, linux-arm-msm, linux-kernel
  Cc: Krzysztof Kozlowski

Add MODULE_DEVICE_TABLE(), so the module could be properly autoloaded
based on the alias from of_device_id table.

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
---
 drivers/regulator/qcom-refgen-regulator.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/regulator/qcom-refgen-regulator.c b/drivers/regulator/qcom-refgen-regulator.c
index 656fe330d38f..063e12c08e75 100644
--- a/drivers/regulator/qcom-refgen-regulator.c
+++ b/drivers/regulator/qcom-refgen-regulator.c
@@ -140,6 +140,7 @@ static const struct of_device_id qcom_refgen_match_table[] = {
 	{ .compatible = "qcom,sm8250-refgen-regulator", .data = &sm8250_refgen_desc },
 	{ }
 };
+MODULE_DEVICE_TABLE(of, qcom_refgen_match_table);
 
 static struct platform_driver qcom_refgen_driver = {
 	.probe = qcom_refgen_probe,
-- 
2.34.1


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

* [PATCH 2/2] regulator: vqmmc-ipq4019: fix module autoloading
  2024-04-10 17:26 [PATCH 1/2] regulator: qcom-refgen: fix module autoloading Krzysztof Kozlowski
@ 2024-04-10 17:26 ` Krzysztof Kozlowski
  2024-04-10 17:39   ` Konrad Dybcio
  2024-04-10 17:39 ` [PATCH 1/2] regulator: qcom-refgen: " Konrad Dybcio
  2024-04-10 20:23 ` Mark Brown
  2 siblings, 1 reply; 5+ messages in thread
From: Krzysztof Kozlowski @ 2024-04-10 17:26 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Liam Girdwood, Mark Brown,
	Robert Marko, Luka Perkov, linux-arm-msm, linux-kernel
  Cc: Krzysztof Kozlowski

Add MODULE_DEVICE_TABLE(), so the module could be properly autoloaded
based on the alias from of_device_id table.

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
---
 drivers/regulator/vqmmc-ipq4019-regulator.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/regulator/vqmmc-ipq4019-regulator.c b/drivers/regulator/vqmmc-ipq4019-regulator.c
index 086da36abc0b..4955616517ce 100644
--- a/drivers/regulator/vqmmc-ipq4019-regulator.c
+++ b/drivers/regulator/vqmmc-ipq4019-regulator.c
@@ -84,6 +84,7 @@ static const struct of_device_id regulator_ipq4019_of_match[] = {
 	{ .compatible = "qcom,vqmmc-ipq4019-regulator", },
 	{},
 };
+MODULE_DEVICE_TABLE(of, regulator_ipq4019_of_match);
 
 static struct platform_driver ipq4019_regulator_driver = {
 	.probe = ipq4019_regulator_probe,
-- 
2.34.1


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

* Re: [PATCH 1/2] regulator: qcom-refgen: fix module autoloading
  2024-04-10 17:26 [PATCH 1/2] regulator: qcom-refgen: fix module autoloading Krzysztof Kozlowski
  2024-04-10 17:26 ` [PATCH 2/2] regulator: vqmmc-ipq4019: " Krzysztof Kozlowski
@ 2024-04-10 17:39 ` Konrad Dybcio
  2024-04-10 20:23 ` Mark Brown
  2 siblings, 0 replies; 5+ messages in thread
From: Konrad Dybcio @ 2024-04-10 17:39 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Bjorn Andersson, Liam Girdwood, Mark Brown,
	Robert Marko, Luka Perkov, linux-arm-msm, linux-kernel



On 4/10/24 19:26, Krzysztof Kozlowski wrote:
> Add MODULE_DEVICE_TABLE(), so the module could be properly autoloaded
> based on the alias from of_device_id table.
> 
> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
> ---

Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad

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

* Re: [PATCH 2/2] regulator: vqmmc-ipq4019: fix module autoloading
  2024-04-10 17:26 ` [PATCH 2/2] regulator: vqmmc-ipq4019: " Krzysztof Kozlowski
@ 2024-04-10 17:39   ` Konrad Dybcio
  0 siblings, 0 replies; 5+ messages in thread
From: Konrad Dybcio @ 2024-04-10 17:39 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Bjorn Andersson, Liam Girdwood, Mark Brown,
	Robert Marko, Luka Perkov, linux-arm-msm, linux-kernel



On 4/10/24 19:26, Krzysztof Kozlowski wrote:
> Add MODULE_DEVICE_TABLE(), so the module could be properly autoloaded
> based on the alias from of_device_id table.
> 
> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
> ---

Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad

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

* Re: [PATCH 1/2] regulator: qcom-refgen: fix module autoloading
  2024-04-10 17:26 [PATCH 1/2] regulator: qcom-refgen: fix module autoloading Krzysztof Kozlowski
  2024-04-10 17:26 ` [PATCH 2/2] regulator: vqmmc-ipq4019: " Krzysztof Kozlowski
  2024-04-10 17:39 ` [PATCH 1/2] regulator: qcom-refgen: " Konrad Dybcio
@ 2024-04-10 20:23 ` Mark Brown
  2 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2024-04-10 20:23 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Liam Girdwood, Robert Marko,
	Luka Perkov, linux-arm-msm, linux-kernel, Krzysztof Kozlowski

On Wed, 10 Apr 2024 19:26:14 +0200, Krzysztof Kozlowski wrote:
> Add MODULE_DEVICE_TABLE(), so the module could be properly autoloaded
> based on the alias from of_device_id table.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next

Thanks!

[1/2] regulator: qcom-refgen: fix module autoloading
      commit: ddd3f34c10002e41ed3cd89c9bd8f1d05a22506a
[2/2] regulator: vqmmc-ipq4019: fix module autoloading
      commit: 68adb581a39ae63a0ed082c47f01fbbe515efa0e

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark


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

end of thread, other threads:[~2024-04-10 20:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-10 17:26 [PATCH 1/2] regulator: qcom-refgen: fix module autoloading Krzysztof Kozlowski
2024-04-10 17:26 ` [PATCH 2/2] regulator: vqmmc-ipq4019: " Krzysztof Kozlowski
2024-04-10 17:39   ` Konrad Dybcio
2024-04-10 17:39 ` [PATCH 1/2] regulator: qcom-refgen: " Konrad Dybcio
2024-04-10 20:23 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox