From: Arnd Bergmann Date: Tue, 16 May 2023 19:35:43 +0000 (+0200) Subject: x86/fbdev: Include asm/fb.h as needed X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=29bf464cb8ee1b119d23aec88cbf17f9941610ad;p=linux.git x86/fbdev: Include asm/fb.h as needed fb_is_primary_device() is defined as a global function on x86, unlike the others that have an inline version. The file that defines is however needs to include the declaration to avoid a warning: arch/x86/video/fbdev.c:14:5: error: no previous prototype for 'fb_is_primary_device' [-Werror=missing-prototypes] Signed-off-by: Arnd Bergmann Signed-off-by: Dave Hansen Reviewed-by: Alexander Lobakin Link: https://lore.kernel.org/all/20230516193549.544673-15-arnd%40kernel.org --- diff --git a/arch/x86/video/fbdev.c b/arch/x86/video/fbdev.c index 9fd24846d0943..9e9143085d19d 100644 --- a/arch/x86/video/fbdev.c +++ b/arch/x86/video/fbdev.c @@ -10,6 +10,7 @@ #include #include #include +#include int fb_is_primary_device(struct fb_info *info) {