]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
mailbox: zynqmp-ipi: drop irq_to_desc() call
authorArnd Bergmann <arnd@arndb.de>
Tue, 28 May 2024 12:02:35 +0000 (14:02 +0200)
committerJassi Brar <jassisinghbrar@gmail.com>
Fri, 31 May 2024 17:39:15 +0000 (12:39 -0500)
irq_to_desc() is not exported to loadable modules, so this driver now
fails to link in some configurations:

ERROR: modpost: "irq_to_desc" [drivers/mailbox/zynqmp-ipi-mailbox.ko] undefined!

I can't see a purpose for this call, since the return value is unused
and probably left over from some code refactoring.

Address the link failure by just removing the line.

Fixes: 6ffb1635341b ("mailbox: zynqmp: handle SGI for shared IPI")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Tested-by: Tanmay Shah <tanmay.shah@amd.com>
Signed-off-by: Jassi Brar <jassisinghbrar@gmail.com>
drivers/mailbox/zynqmp-ipi-mailbox.c

index 7c90bac3de216a34af3be01df548d98278dd3c7d..4acf5612487cfd77fd5ee4d3556123bfb051fc46 100644 (file)
@@ -850,7 +850,6 @@ static int xlnx_mbox_init_sgi(struct platform_device *pdev,
                return ret;
        }
 
-       irq_to_desc(pdata->virq_sgi);
        irq_set_status_flags(pdata->virq_sgi, IRQ_PER_CPU);
 
        /* Setup function for the CPU hot-plug cases */