From 3a97cddfe82b9e668d6fc7cd2e6ce7540ec06554 Mon Sep 17 00:00:00 2001 From: Perry Hung Date: Fri, 3 Jul 2015 00:27:12 -0400 Subject: [PATCH] greybus: makefile: fix unused cflags The ccflags variable was spelled wrong, so no extra compilation flags could be specified. The proper flag is 'ccflags-y.' Signed-off-by: Perry Hung Signed-off-by: Greg Kroah-Hartman --- drivers/staging/greybus/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/greybus/Makefile b/drivers/staging/greybus/Makefile index 4f66ff3a9713..163cd13e7545 100644 --- a/drivers/staging/greybus/Makefile +++ b/drivers/staging/greybus/Makefile @@ -66,7 +66,7 @@ $(foreach opt,$(CONFIG_OPTIONS_DISABLE),$(if $(filter m y, $(CONFIG_$(opt))), \ endif # add -Wall to try to catch everything we can. -ccFlags-y := -Wall +ccflags-y := -Wall all: module -- 2.39.2