]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
irqchip/qcom-irq-combiner: Rename driver structure
authorJohan Hovold <johan@kernel.org>
Fri, 17 Oct 2025 05:52:26 +0000 (07:52 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Fri, 17 Oct 2025 13:18:18 +0000 (15:18 +0200)
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>
drivers/irqchip/qcom-irq-combiner.c

index 9308088773be7f97f0ee1db29e20fc1273d6fdee..09819007d08ee6f875157765c61c9c51342ca592 100644 (file)
@@ -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);