]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
lantiq: fix vmmc driver build warnings
authorShiji Yang <yangshiji66@outlook.com>
Thu, 8 May 2025 13:44:19 +0000 (21:44 +0800)
committerDaniel Golle <daniel@makrotopia.org>
Fri, 18 Jul 2025 11:30:59 +0000 (12:30 +0100)
This patch fixes the following build warnings:

arch/mips/lantiq/xway/vmmc.c:31:14: error: no previous prototype for 'ltq_get_mps_ad0_irq' [-Werror=missing-prototypes]
   31 | unsigned int ltq_get_mps_ad0_irq(void)
      |              ^~~~~~~~~~~~~~~~~~~
arch/mips/lantiq/xway/vmmc.c:40:14: error: no previous prototype for 'ltq_get_mps_ad1_irq' [-Werror=missing-prototypes]
   40 | unsigned int ltq_get_mps_ad1_irq(void)
      |              ^~~~~~~~~~~~~~~~~~~
arch/mips/lantiq/xway/vmmc.c:49:14: error: no previous prototype for 'ltq_get_mps_vc_irq' [-Werror=missing-prototypes]
   49 | unsigned int ltq_get_mps_vc_irq(int idx)
      |              ^~~~~~~~~~~~~~~~~~

Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
target/linux/lantiq/patches-6.6/0200-MIPS-lantiq-xway-vmmc-use-platform_get_irq-to-get-ir.patch

index 6db051b6a98be3305635a3010c7cc397812b5493..65164f6ac2e35648d14805e4d70e0d882931aa57 100644 (file)
@@ -97,3 +97,15 @@ Signed-off-by: Martin Schiller <ms@dev.tdt.de>
        gpio_count = gpiod_count(&pdev->dev, NULL);
        while (gpio_count > 0) {
                gpio = devm_gpiod_get_index(&pdev->dev,
+--- a/arch/mips/include/asm/mach-lantiq/xway/lantiq_soc.h
++++ b/arch/mips/include/asm/mach-lantiq/xway/lantiq_soc.h
+@@ -104,6 +104,9 @@ const u8* ltq_get_eth_mac(void);
+ /* VMMC */
+ extern unsigned int *ltq_get_cp1_base(void);
++extern unsigned int ltq_get_mps_ad0_irq(void);
++extern unsigned int ltq_get_mps_ad1_irq(void);
++extern unsigned int ltq_get_mps_vc_irq(int idx);
+ #endif /* CONFIG_SOC_TYPE_XWAY */
+ #endif /* _LTQ_XWAY_H__ */