diff --git a/linux-core/i810_drv.c b/linux-core/i810_drv.c index d09a9780..d98c16a8 100644 --- a/linux-core/i810_drv.c +++ b/linux-core/i810_drv.c @@ -57,6 +57,7 @@ static struct file_operations i810_fops = { mmap: drm_mmap, read: drm_read, fasync: drm_fasync, + poll: drm_poll, }; static struct miscdevice i810_misc = { diff --git a/linux-core/mga_drv.c b/linux-core/mga_drv.c index 29d4c70b..d608d42e 100644 --- a/linux-core/mga_drv.c +++ b/linux-core/mga_drv.c @@ -54,6 +54,7 @@ static struct file_operations mga_fops = { mmap: drm_mmap, read: drm_read, fasync: drm_fasync, + poll: drm_poll, }; static struct miscdevice mga_misc = { diff --git a/linux/i810_drv.c b/linux/i810_drv.c index d09a9780..d98c16a8 100644 --- a/linux/i810_drv.c +++ b/linux/i810_drv.c @@ -57,6 +57,7 @@ static struct file_operations i810_fops = { mmap: drm_mmap, read: drm_read, fasync: drm_fasync, + poll: drm_poll, }; static struct miscdevice i810_misc = { diff --git a/linux/mga_drv.c b/linux/mga_drv.c index 29d4c70b..d608d42e 100644 --- a/linux/mga_drv.c +++ b/linux/mga_drv.c @@ -54,6 +54,7 @@ static struct file_operations mga_fops = { mmap: drm_mmap, read: drm_read, fasync: drm_fasync, + poll: drm_poll, }; static struct miscdevice mga_misc = {