bionic: update cleaned headers for ion

Change-Id: I5352e6c2b29a1c3c17eda531df397d8d3a63649a
Signed-off-by: Iliyan Malchev <malchev@google.com>
This commit is contained in:
Iliyan Malchev 2011-07-07 15:39:28 -07:00
parent 681c4bd782
commit 221595a085
2 changed files with 4 additions and 4 deletions

View File

@ -29,10 +29,10 @@ enum ion_heap_type {
ION_HEAP_TYPE_CUSTOM, ION_HEAP_TYPE_CUSTOM,
ION_NUM_HEAPS, ION_NUM_HEAPS,
}; };
#define ION_HEAP_SYSTEM_MASK (1 << ION_HEAP_SYSTEM) #define ION_HEAP_SYSTEM_MASK (1 << ION_HEAP_TYPE_SYSTEM)
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
#define ION_HEAP_SYSTEM_CONTIG_MASK (1 << ION_HEAP_SYSTEM_CONTIG) #define ION_HEAP_SYSTEM_CONTIG_MASK (1 << ION_HEAP_TYPE_SYSTEM_CONTIG)
#define ION_HEAP_CARVEOUT_MASK (1 << ION_HEAP_CARVEOUT) #define ION_HEAP_CARVEOUT_MASK (1 << ION_HEAP_TYPE_CARVEOUT)
struct ion_allocation_data { struct ion_allocation_data {
size_t len; size_t len;
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */

View File

@ -31,7 +31,7 @@ struct omap_ion_tiler_alloc_data {
size_t offset; size_t offset;
}; };
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
#define OMAP_ION_HEAP_TILER_MASK (1 << ION_HEAP_OMAP_TILER) #define OMAP_ION_HEAP_TILER_MASK (1 << OMAP_ION_HEAP_TYPE_TILER)
enum { enum {
OMAP_ION_TILER_ALLOC, OMAP_ION_TILER_ALLOC,
}; };