summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorChoi, Jong-Hwan <jhbird.choi@samsung.com>2011-12-13 01:21:24 +0800
committerAndy Green <andy.green@linaro.org>2011-12-26 16:41:50 +0800
commit2623f0dfe54b9c7dee4328bc224291bb4f1a7db9 (patch)
tree5176c6a332cf14d48b37cc2065d6781d4cfdd94a /drivers
parentadd79c1dc9ad67871e5f48082681962c8133c4d1 (diff)
gpu: ion: Fix deferencing ERR_PTR
Change-Id: I986c380d75591571890f1a2cba1405e66789b25c Signed-off-by: Choi, Jong-Hwan <jhbird.choi@samsung.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/ion/ion_heap.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/gpu/ion/ion_heap.c b/drivers/gpu/ion/ion_heap.c
index 7c93577c9b3..8ce3c1907ba 100644
--- a/drivers/gpu/ion/ion_heap.c
+++ b/drivers/gpu/ion/ion_heap.c
@@ -37,10 +37,13 @@ struct ion_heap *ion_heap_create(struct ion_platform_heap *heap_data)
heap_data->type);
return ERR_PTR(-EINVAL);
}
- if (IS_ERR_OR_NULL(heap))
+
+ if (IS_ERR_OR_NULL(heap)) {
pr_err("%s: error creating heap %s type %d base %lu size %u\n",
__func__, heap_data->name, heap_data->type,
heap_data->base, heap_data->size);
+ return ERR_PTR(-EINVAL);
+ }
heap->name = heap_data->name;
heap->id = heap_data->id;