@@ -47,6 +47,7 @@ struct ion_heap *ion_heap_create(struct ion_platform_heap *heap_data)
heap->name = heap_data->name;
heap->id = heap_data->id;
+ heap->priv = heap_data->priv;
return heap;
}
@@ -117,6 +117,7 @@ struct ion_heap_ops {
* allocating. These are specified by platform data and
* MUST be unique
* @name: used for debugging
+ * @priv: heap private data
* @debug_show: called when heap debug file is read to add any
* heap specific debug info to output
*
@@ -132,6 +133,7 @@ struct ion_heap {
struct ion_heap_ops *ops;
int id;
const char *name;
+ void *priv;
int (*debug_show)(struct ion_heap *heap, struct seq_file *, void *);
};
@@ -77,6 +77,7 @@ struct ion_buffer;
* @name: used for debug purposes
* @base: base address of heap in physical memory if applicable
* @size: size of the heap in bytes if applicable
+ * @priv: heap private data
*
* Provided by the board file.
*/
@@ -86,6 +87,7 @@ struct ion_platform_heap {
const char *name;
ion_phys_addr_t base;
size_t size;
+ void *priv;
};
/**