diff options
Diffstat (limited to 'drivers/gpu/vga/vga_switcheroo.c')
| -rw-r--r-- | drivers/gpu/vga/vga_switcheroo.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/vga/vga_switcheroo.c b/drivers/gpu/vga/vga_switcheroo.c index fa60add0ff6..cf787e1d932 100644 --- a/drivers/gpu/vga/vga_switcheroo.c +++ b/drivers/gpu/vga/vga_switcheroo.c @@ -25,6 +25,7 @@  #include <linux/fb.h>  #include <linux/pci.h> +#include <linux/console.h>  #include <linux/vga_switcheroo.h>  #include <linux/vgaarb.h> @@ -337,8 +338,10 @@ static int vga_switchto_stage2(struct vga_switcheroo_client *new_client)  	if (new_client->fb_info) {  		struct fb_event event; +		console_lock();  		event.info = new_client->fb_info;  		fb_notifier_call_chain(FB_EVENT_REMAP_ALL_CONSOLE, &event); +		console_unlock();  	}  	ret = vgasr_priv.handler->switchto(new_client->id);  |