drm/vboxvideo: Drop CONFIG_VGA_CONSOLE guard to call vgacon_text_force()
authorJavier Martinez Canillas <javierm@redhat.com>
Fri, 12 Nov 2021 13:32:26 +0000 (14:32 +0100)
committerJavier Martinez Canillas <javierm@redhat.com>
Sat, 27 Nov 2021 12:52:18 +0000 (13:52 +0100)
It is already handled by the console.h macro since a stub inline function
is defined for vgacon_text_force() if CONFIG_VGA_CONSOLE is not set.

There's no need to have ifdefery in the driver when calling the function.

Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Acked-by: Jani Nikula <jani.nikula@intel.com>
Acked-by: Pekka Paalanen <pekka.paalanen@collabora.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20211112133230.1595307-3-javierm@redhat.com
drivers/gpu/drm/vboxvideo/vbox_drv.c

index a6c81af..fd7abb0 100644 (file)
@@ -193,10 +193,8 @@ static const struct drm_driver driver = {
 
 static int __init vbox_init(void)
 {
-#ifdef CONFIG_VGA_CONSOLE
        if (vgacon_text_force() && vbox_modeset == -1)
                return -EINVAL;
-#endif
 
        if (vbox_modeset == 0)
                return -EINVAL;