fbdev: sa1100fb: mark sa1100fb_init() static

This is a global function that is only referenced as an initcall. This causes
a warning:

drivers/video/fbdev/sa1100fb.c:1218:12: error: no previous prototype for 'sa1100fb_init' [-Werror=missing-prototypes]

Make it static instead.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
Arnd Bergmann 2023-10-16 22:04:40 +02:00 committed by Helge Deller
parent dc608db793
commit e638d3710f
1 changed files with 1 additions and 1 deletions

View File

@ -1214,7 +1214,7 @@ static struct platform_driver sa1100fb_driver = {
},
};
int __init sa1100fb_init(void)
static int __init sa1100fb_init(void)
{
if (fb_get_options("sa1100fb", NULL))
return -ENODEV;