gralloc: Make MASTER_SIDE_CP as default
Making MASTER_SIDE_CP as default
Change-Id: I301e81d70e8d37afa78c54e67e44536f293d4775
CRs-Fixed: 2252053
diff --git a/gralloc/gr_utils.h b/gralloc/gr_utils.h
index fa62871..0977458 100644
--- a/gralloc/gr_utils.h
+++ b/gralloc/gr_utils.h
@@ -41,10 +41,10 @@
#define SIZE_4K 4096
#define SIZE_8K 8192
-#ifdef MASTER_SIDE_CP
-#define SECURE_ALIGN SZ_4K
-#else
+#ifdef SLAVE_SIDE_CP
#define SECURE_ALIGN SZ_1M
+#else // MASTER_SIDE_CP
+#define SECURE_ALIGN SZ_4K
#endif
#define INT(exp) static_cast<int>(exp)