[PATCH 02/16] MIPS: lantiq: xway: mark dma_init() as static

From: Shiji Yang
Date: Wed Jun 18 2025 - 10:54:59 EST


Fix the following missing-prototypes build warning:

arch/mips/lantiq/xway/dma.c:293:1: error: no previous prototype for 'dma_init' [-Werror=missing-prototypes]
293 | dma_init(void)
| ^~~~~~~~

Signed-off-by: Shiji Yang <yangshiji66@xxxxxxxxxxx>
---
arch/mips/lantiq/xway/dma.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/lantiq/xway/dma.c b/arch/mips/lantiq/xway/dma.c
index 934ac7293..4693eba6c 100644
--- a/arch/mips/lantiq/xway/dma.c
+++ b/arch/mips/lantiq/xway/dma.c
@@ -289,7 +289,7 @@ static struct platform_driver dma_driver = {
},
};

-int __init
+static int __init
dma_init(void)
{
return platform_driver_register(&dma_driver);
--
2.50.0