Merge "Turn off -Wmaybe-uninitialized when building with -Os"
diff --git a/Makefile b/Makefile
index 75b36ae..be32c2f 100644
--- a/Makefile
+++ b/Makefile
@@ -563,7 +563,7 @@
 all: vmlinux
 
 ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
-KBUILD_CFLAGS	+= -Os
+KBUILD_CFLAGS	+= -Os $(call cc-disable-warning,maybe-uninitialized,)
 else
 KBUILD_CFLAGS	+= -O2
 endif