diff options
Diffstat (limited to 'drivers/gpu/drm/drm_fops.c')
-rw-r--r-- | drivers/gpu/drm/drm_fops.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_fops.c b/drivers/gpu/drm/drm_fops.c index 9d532d7fdf59..e7aace20981f 100644 --- a/drivers/gpu/drm/drm_fops.c +++ b/drivers/gpu/drm/drm_fops.c | |||
@@ -243,11 +243,10 @@ static int drm_open_helper(struct inode *inode, struct file *filp, | |||
243 | 243 | ||
244 | DRM_DEBUG("pid = %d, minor = %d\n", task_pid_nr(current), minor_id); | 244 | DRM_DEBUG("pid = %d, minor = %d\n", task_pid_nr(current), minor_id); |
245 | 245 | ||
246 | priv = kmalloc(sizeof(*priv), GFP_KERNEL); | 246 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
247 | if (!priv) | 247 | if (!priv) |
248 | return -ENOMEM; | 248 | return -ENOMEM; |
249 | 249 | ||
250 | memset(priv, 0, sizeof(*priv)); | ||
251 | filp->private_data = priv; | 250 | filp->private_data = priv; |
252 | priv->filp = filp; | 251 | priv->filp = filp; |
253 | priv->uid = current_euid(); | 252 | priv->uid = current_euid(); |