|
@@ -112,13 +112,18 @@ void ion_carveout_heap_unmap_dma(struct ion_heap *heap,
|
|
|
void *ion_carveout_heap_map_kernel(struct ion_heap *heap,
|
|
|
struct ion_buffer *buffer)
|
|
|
{
|
|
|
+ void *ret;
|
|
|
int mtype = MT_MEMORY_NONCACHED;
|
|
|
|
|
|
if (buffer->flags & ION_FLAG_CACHED)
|
|
|
mtype = MT_MEMORY;
|
|
|
|
|
|
- return __arm_ioremap(buffer->priv_phys, buffer->size,
|
|
|
+ ret = __arm_ioremap(buffer->priv_phys, buffer->size,
|
|
|
mtype);
|
|
|
+ if (ret == NULL)
|
|
|
+ return ERR_PTR(-ENOMEM);
|
|
|
+
|
|
|
+ return ret;
|
|
|
}
|
|
|
|
|
|
void ion_carveout_heap_unmap_kernel(struct ion_heap *heap,
|