Re: [PATCH] fbdev: sa1100fb: mark sa1100fb_init() static

2023-10-16 Thread Helge Deller
On 10/16/23 22:04, Arnd Bergmann wrote: From: Arnd Bergmann 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.

[PATCH] fbdev: sa1100fb: mark sa1100fb_init() static

2023-10-16 Thread Arnd Bergmann
From: Arnd Bergmann 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 --- drivers