diff options
| author | Rebecca Schultz Zavin <rebecca@android.com> | 2012-06-25 14:02:25 -0700 | 
|---|---|---|
| committer | Arve Hjønnevåg <arve@android.com> | 2013-07-01 13:40:50 -0700 | 
| commit | f3851c7cdfe285f5eeefadf03359fd617019baf0 (patch) | |
| tree | 804e6206a6614d0123d61cd2855ad7abf5e46eac | |
| parent | c9a230854e3e1d839ae063ee1a75967567d2abfa (diff) | |
| download | olio-linux-3.10-f3851c7cdfe285f5eeefadf03359fd617019baf0.tar.xz olio-linux-3.10-f3851c7cdfe285f5eeefadf03359fd617019baf0.zip  | |
gpu: ion: Switch max num_heaps to 16 to work around an issue elsewere
Signed-off-by: Rebecca Schultz Zavin <rebecca@android.com>
Change-Id: I3bcbc9c424086f5921a1641afeb16040deffcece
| -rw-r--r-- | include/linux/ion.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/ion.h b/include/linux/ion.h index 050a9a15705..ba09e704c19 100644 --- a/include/linux/ion.h +++ b/include/linux/ion.h @@ -37,7 +37,7 @@ enum ion_heap_type {  	ION_HEAP_TYPE_CARVEOUT,  	ION_HEAP_TYPE_CUSTOM, /* must be last so device specific heaps always  				 are at the end of this enum */ -	ION_NUM_HEAPS = 32, +	ION_NUM_HEAPS = 16,  };  #define ION_HEAP_SYSTEM_MASK		(1 << ION_HEAP_TYPE_SYSTEM)  |