public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] irqchip/qcom-irq-combiner: Rename driver structure
@ 2025-10-17  5:52 Johan Hovold
  2025-10-17 13:16 ` Thomas Gleixner
  2025-10-17 13:36 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold
  0 siblings, 2 replies; 4+ messages in thread
From: Johan Hovold @ 2025-10-17  5:52 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: linux-kernel, Johan Hovold

The "_probe" suffix of the driver structure name prevents modpost from
warning about section mismatches so replace it to catch any future
issues like the recently fixed probe function being incorrectly marked
as __init.

Signed-off-by: Johan Hovold <johan@kernel.org>
---
 drivers/irqchip/qcom-irq-combiner.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/irqchip/qcom-irq-combiner.c b/drivers/irqchip/qcom-irq-combiner.c
index 9308088773be..09819007d08e 100644
--- a/drivers/irqchip/qcom-irq-combiner.c
+++ b/drivers/irqchip/qcom-irq-combiner.c
@@ -266,11 +266,11 @@ static const struct acpi_device_id qcom_irq_combiner_ids[] = {
 	{ }
 };
 
-static struct platform_driver qcom_irq_combiner_probe = {
+static struct platform_driver qcom_irq_combiner_driver = {
 	.driver = {
 		.name = "qcom-irq-combiner",
 		.acpi_match_table = ACPI_PTR(qcom_irq_combiner_ids),
 	},
 	.probe = combiner_probe,
 };
-builtin_platform_driver(qcom_irq_combiner_probe);
+builtin_platform_driver(qcom_irq_combiner_driver);
-- 
2.49.1


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

end of thread, other threads:[~2025-10-20  9:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-17  5:52 [PATCH] irqchip/qcom-irq-combiner: Rename driver structure Johan Hovold
2025-10-17 13:16 ` Thomas Gleixner
2025-10-20  9:18   ` Johan Hovold
2025-10-17 13:36 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold

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