Re: [PATCH] fbdev: fbmem: mark get_fb_unmapped_area() static

2023-05-19 Thread Helge Deller
.g. "to provide shareable character device support on nommu"? I've added Geerts suggestions and made it dependend on !MMU. Applied to fbdev git tree as below. Thanks! Helge From 9adfa68ca0ddd63007cdce60a8ffcb493bb30d97 Mon Sep 17 00:00:00 2001 From: Arnd Bergmann Subject: [PATCH]

Re: [PATCH] fbdev: fbmem: mark get_fb_unmapped_area() static

2023-05-19 Thread Geert Uytterhoeven
gt; > provide get_fb_unmapped_area > > drivers/video/fbdev/Kconfig- function. > > > > Probably you want to update this help text, too. E.g. > > "to provide shareable character device support on nommu"? > > I've added Geerts suggestions and made i

Re: [PATCH] fbdev: fbmem: mark get_fb_unmapped_area() static

2023-05-19 Thread Helge Deller
deo/fbdev/Kconfig- Allow generic frame-buffer to > provide get_fb_unmapped_area > drivers/video/fbdev/Kconfig- function. > > Probably you want to update this help text, too. E.g. > "to provide shareable character device support on nommu"? I've added

Re: [PATCH] fbdev: fbmem: mark get_fb_unmapped_area() static

2023-05-17 Thread Geert Uytterhoeven
Hi Arnd, On Tue, May 16, 2023 at 10:23 PM Arnd Bergmann wrote: > From: Arnd Bergmann > > There is a global function with this name on sparc, but no > global declaration: > > drivers/video/fbdev/core/fbmem.c:1469:15: error: no previous prototype for > 'get_fb_unmapped_area' > > Make the generic

[PATCH] fbdev: fbmem: mark get_fb_unmapped_area() static

2023-05-16 Thread Arnd Bergmann
From: Arnd Bergmann There is a global function with this name on sparc, but no global declaration: drivers/video/fbdev/core/fbmem.c:1469:15: error: no previous prototype for 'get_fb_unmapped_area' Make the generic definition static to avoid this warning. On sparc, this is never seen. Signed-o