Skip to content

Commit a7f25e0

Browse files
jhovoldKAGA-KOKO
authored andcommitted
irqchip/qcom-irq-combiner: Rename driver structure
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> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
1 parent 3a16b05 commit a7f25e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/irqchip/qcom-irq-combiner.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,11 +266,11 @@ static const struct acpi_device_id qcom_irq_combiner_ids[] = {
266266
{ }
267267
};
268268

269-
static struct platform_driver qcom_irq_combiner_probe = {
269+
static struct platform_driver qcom_irq_combiner_driver = {
270270
.driver = {
271271
.name = "qcom-irq-combiner",
272272
.acpi_match_table = ACPI_PTR(qcom_irq_combiner_ids),
273273
},
274274
.probe = combiner_probe,
275275
};
276-
builtin_platform_driver(qcom_irq_combiner_probe);
276+
builtin_platform_driver(qcom_irq_combiner_driver);

0 commit comments

Comments
 (0)