2019-06-19 08:12:51

by Daniel Vetter

[permalink] [raw]
Subject: [PATCH] fbcon: Export fbcon_update_vcs

I failed to spot this while compile-testing. Oops.

Reported-by: kbuild test robot <[email protected]>
Fixes: 9e1467002630 ("fbcon: replace FB_EVENT_MODE_CHANGE/_ALL with direct calls")
Cc: Sam Ravnborg <[email protected]>
Cc: Daniel Vetter <[email protected]>
Cc: Maarten Lankhorst <[email protected]>
Cc: Daniel Thompson <[email protected]>
Cc: Lee Jones <[email protected]>
Cc: Jingoo Han <[email protected]>
Cc: Bartlomiej Zolnierkiewicz <[email protected]>
Cc: Daniel Vetter <[email protected]>
Cc: Hans de Goede <[email protected]>
Cc: Yisheng Xie <[email protected]>
Cc: "Michał Mirosław" <[email protected]>
Cc: Peter Rosin <[email protected]>
Cc: Mikulas Patocka <[email protected]>
Cc: [email protected]
Cc: Gerd Hoffmann <[email protected]>
Cc: Geert Uytterhoeven <[email protected]>
Cc: Lukas Wunner <[email protected]>
Cc: [email protected]
Signed-off-by: Daniel Vetter <[email protected]>
---
drivers/video/fbdev/core/fbcon.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/video/fbdev/core/fbcon.c b/drivers/video/fbdev/core/fbcon.c
index b8067e07f8a8..c9235a2f42f8 100644
--- a/drivers/video/fbdev/core/fbcon.c
+++ b/drivers/video/fbdev/core/fbcon.c
@@ -3037,6 +3037,7 @@ void fbcon_update_vcs(struct fb_info *info, bool all)
else
fbcon_modechanged(info);
}
+EXPORT_SYMBOL(fbcon_update_vcs);

int fbcon_mode_deleted(struct fb_info *info,
struct fb_videomode *mode)
--
2.20.1


2019-06-19 09:44:30

by Maarten Lankhorst

[permalink] [raw]
Subject: Re: [PATCH] fbcon: Export fbcon_update_vcs

Op 19-06-2019 om 10:11 schreef Daniel Vetter:
> I failed to spot this while compile-testing. Oops.
>
> Reported-by: kbuild test robot <[email protected]>
> Fixes: 9e1467002630 ("fbcon: replace FB_EVENT_MODE_CHANGE/_ALL with direct calls")
> Cc: Sam Ravnborg <[email protected]>
> Cc: Daniel Vetter <[email protected]>
> Cc: Maarten Lankhorst <[email protected]>
> Cc: Daniel Thompson <[email protected]>
> Cc: Lee Jones <[email protected]>
> Cc: Jingoo Han <[email protected]>
> Cc: Bartlomiej Zolnierkiewicz <[email protected]>
> Cc: Daniel Vetter <[email protected]>
> Cc: Hans de Goede <[email protected]>
> Cc: Yisheng Xie <[email protected]>
> Cc: "Michał Mirosław" <[email protected]>
> Cc: Peter Rosin <[email protected]>
> Cc: Mikulas Patocka <[email protected]>
> Cc: [email protected]
> Cc: Gerd Hoffmann <[email protected]>
> Cc: Geert Uytterhoeven <[email protected]>
> Cc: Lukas Wunner <[email protected]>
> Cc: [email protected]
> Signed-off-by: Daniel Vetter <[email protected]>
> ---
> drivers/video/fbdev/core/fbcon.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/video/fbdev/core/fbcon.c b/drivers/video/fbdev/core/fbcon.c
> index b8067e07f8a8..c9235a2f42f8 100644
> --- a/drivers/video/fbdev/core/fbcon.c
> +++ b/drivers/video/fbdev/core/fbcon.c
> @@ -3037,6 +3037,7 @@ void fbcon_update_vcs(struct fb_info *info, bool all)
> else
> fbcon_modechanged(info);
> }
> +EXPORT_SYMBOL(fbcon_update_vcs);
>
> int fbcon_mode_deleted(struct fb_info *info,
> struct fb_videomode *mode)

Thanks, pushed to topic branch. :)