diff options
-rw-r--r-- | drivers/gpu/drm/drm_proc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_proc.c b/drivers/gpu/drm/drm_proc.c index bbd4b3d1074a..dc967af7a33c 100644 --- a/drivers/gpu/drm/drm_proc.c +++ b/drivers/gpu/drm/drm_proc.c | |||
@@ -106,6 +106,10 @@ int drm_proc_create_files(struct drm_info_list *files, int count, | |||
106 | continue; | 106 | continue; |
107 | 107 | ||
108 | tmp = kmalloc(sizeof(struct drm_info_node), GFP_KERNEL); | 108 | tmp = kmalloc(sizeof(struct drm_info_node), GFP_KERNEL); |
109 | if (tmp == NULL) { | ||
110 | ret = -1; | ||
111 | goto fail; | ||
112 | } | ||
109 | ent = create_proc_entry(files[i].name, S_IFREG | S_IRUGO, root); | 113 | ent = create_proc_entry(files[i].name, S_IFREG | S_IRUGO, root); |
110 | if (!ent) { | 114 | if (!ent) { |
111 | DRM_ERROR("Cannot create /proc/dri/%s/%s\n", | 115 | DRM_ERROR("Cannot create /proc/dri/%s/%s\n", |