diff options
Diffstat (limited to 'drivers/gpu/drm/tdfx/tdfx_drv.c')
| -rw-r--r-- | drivers/gpu/drm/tdfx/tdfx_drv.c | 23 | 
1 files changed, 12 insertions, 11 deletions
diff --git a/drivers/gpu/drm/tdfx/tdfx_drv.c b/drivers/gpu/drm/tdfx/tdfx_drv.c index cda29911e33..1613c78544c 100644 --- a/drivers/gpu/drm/tdfx/tdfx_drv.c +++ b/drivers/gpu/drm/tdfx/tdfx_drv.c @@ -41,20 +41,21 @@ static struct pci_device_id pciidlist[] = {  	tdfx_PCI_IDS  }; +static const struct file_operations tdfx_driver_fops = { +	.owner = THIS_MODULE, +	.open = drm_open, +	.release = drm_release, +	.unlocked_ioctl = drm_ioctl, +	.mmap = drm_mmap, +	.poll = drm_poll, +	.fasync = drm_fasync, +	.llseek = noop_llseek, +}; +  static struct drm_driver driver = {  	.driver_features = DRIVER_USE_MTRR,  	.reclaim_buffers = drm_core_reclaim_buffers, -	.fops = { -		 .owner = THIS_MODULE, -		 .open = drm_open, -		 .release = drm_release, -		 .unlocked_ioctl = drm_ioctl, -		 .mmap = drm_mmap, -		 .poll = drm_poll, -		 .fasync = drm_fasync, -		 .llseek = noop_llseek, -	}, - +	.fops = &tdfx_driver_fops,  	.name = DRIVER_NAME,  	.desc = DRIVER_DESC,  	.date = DRIVER_DATE,  |