diff options
author | Dave Airlie <airlied@redhat.com> | 2012-08-29 05:38:49 +0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-09-07 07:24:34 +0400 |
commit | 5d2afab958f8cd203a8fe639082b5b5e74f748f9 (patch) | |
tree | bc769725be83b68f31720a67e329277c119a9088 /drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | |
parent | 804d74abe2e3f361ead5c5c6850d5b1ab0203862 (diff) | |
download | linux-5d2afab958f8cd203a8fe639082b5b5e74f748f9.tar.xz |
drm/vmwgfx: allow a kconfig option to choose if fbcon is enabled
This makes things easier for distros where we'd like to have fbcon
enabled all the time.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/vmwgfx/vmwgfx_drv.c')
-rw-r--r-- | drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c index 4d9edead01ac..7f4f4eecf45a 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c @@ -183,7 +183,7 @@ static struct pci_device_id vmw_pci_id_list[] = { {0, 0, 0} }; -static int enable_fbdev; +static int enable_fbdev = IS_ENABLED(CONFIG_DRM_VMWGFX_FBCON); static int vmw_probe(struct pci_dev *, const struct pci_device_id *); static void vmw_master_init(struct vmw_master *); |