Android: disable warnings causing errors

AOSP master has changed the build default to -Werror making all the
warnings errors. Override that with -Wno-error.

Signed-off-by: Rob Herring <robh@kernel.org>
diff --git a/Android.common.mk b/Android.common.mk
index 5671c1c..fcd9a87 100644
--- a/Android.common.mk
+++ b/Android.common.mk
@@ -31,6 +31,7 @@
 
 MESA_VERSION := $(shell cat $(MESA_TOP)/VERSION)
 LOCAL_CFLAGS += \
+	-Wno-error \
 	-Wno-unused-parameter \
 	-Wno-pointer-arith \
 	-Wno-missing-field-initializers \