summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Coelho <luciano.coelho@intel.com>2018-02-18 15:24:58 +0200
committerJohannes Berg <johannes.berg@intel.com>2018-02-23 12:34:50 +0100
commitd51b196d81d5ece88b3094d94b31de648f2611b7 (patch)
tree4c86a09acc3babe5024c4a7b78e7d27e4b4c3645
parent9a1cf834b7d1e44bcf3b8aabe68f110ecc32b58f (diff)
backport: increase max stack frame size compiler check to 1280
The verification code has some large data variables that are allocated in the stack. Increase the maximum stack frame size in the compiler check slightly (from 1024 to 1280) to prevent harmless warnings. Signed-off-by: Luca Coelho <luciano.coelho@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
-rw-r--r--backport/compat/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/backport/compat/Makefile b/backport/compat/Makefile
index 5c79b9b8..ac70aaf8 100644
--- a/backport/compat/Makefile
+++ b/backport/compat/Makefile
@@ -1,4 +1,4 @@
-ccflags-y += -I$(src)
+ccflags-y += -I$(src) -Wframe-larger-than=1280
ifeq ($(CONFIG_BACKPORT_INTEGRATE),)
obj-m += compat.o
else