diff options
Diffstat (limited to 'drivers/gpu/drm/drm_fops.c')
| -rw-r--r-- | drivers/gpu/drm/drm_fops.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_fops.c b/drivers/gpu/drm/drm_fops.c index 4911e1d1dcf..c00cf154cc0 100644 --- a/drivers/gpu/drm/drm_fops.c +++ b/drivers/gpu/drm/drm_fops.c @@ -182,7 +182,7 @@ int drm_stub_open(struct inode *inode, struct file *filp)  		goto out;  	old_fops = filp->f_op; -	filp->f_op = fops_get(&dev->driver->fops); +	filp->f_op = fops_get(dev->driver->fops);  	if (filp->f_op == NULL) {  		filp->f_op = old_fops;  		goto out;  |