rename heap_mask -> heap_id_mask

The Ion API is changing yet again. heap_mask has been renamed in Ion to
heap_id_mask. Rename ours.

Change-Id: I70154b7166ce66b27ae37e31345f32480d2b9b2d
This commit is contained in:
Mitchel Humpherys
2014-04-29 15:59:39 -07:00
parent 9e1a225634
commit 8a06dbc53a

View File

@@ -73,11 +73,7 @@ int IonAlloc::alloc_buffer(alloc_data& data)
ionAllocData.len = data.size;
ionAllocData.align = data.align;
#ifdef QCOM_BSP
ionAllocData.heap_mask = data.flags & ~ION_SECURE;
#else
ionAllocData.heap_id_mask = data.flags & ~ION_SECURE;
#endif
ionAllocData.flags = data.uncached ? 0 : ION_FLAG_CACHED;
// ToDo: replace usage of alloc data structure with
// ionallocdata structure.