diff options
Diffstat (limited to 'drivers/gpu/vga')
| -rw-r--r-- | drivers/gpu/vga/vgaarb.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/gpu/vga/vgaarb.c b/drivers/gpu/vga/vgaarb.c index d35d6d271f3f..1c5e74cb9279 100644 --- a/drivers/gpu/vga/vgaarb.c +++ b/drivers/gpu/vga/vgaarb.c @@ -1266,12 +1266,12 @@ done:  	return ret_val;  } -static unsigned int vga_arb_fpoll(struct file *file, poll_table *wait) +static __poll_t vga_arb_fpoll(struct file *file, poll_table *wait)  {  	pr_debug("%s\n", __func__);  	poll_wait(file, &vga_wait_queue, wait); -	return POLLIN; +	return EPOLLIN;  }  static int vga_arb_open(struct inode *inode, struct file *file) |