Tracey Dent schrieb: > Changed to use the proper ccflags-y option > > Signed-off-by: Tracey Dent <tdent48227@xxxxxxxxx> > --- > drivers/staging/rtl8187se/Makefile | 14 +++++++------- > 1 files changed, 7 insertions(+), 7 deletions(-) > > diff --git a/drivers/staging/rtl8187se/Makefile b/drivers/staging/rtl8187se/Makefile > index e6adf91..adc3849 100644 > --- a/drivers/staging/rtl8187se/Makefile > +++ b/drivers/staging/rtl8187se/Makefile > @@ -4,17 +4,17 @@ > #EXTRA_CFLAGS += -O2 > #CC = gcc > > -EXTRA_CFLAGS += -DSW_ANTE > -EXTRA_CFLAGS += -DTX_TRACK > -EXTRA_CFLAGS += -DHIGH_POWER > -EXTRA_CFLAGS += -DSW_DIG > -EXTRA_CFLAGS += -DRATE_ADAPT > +ccflags-y := -DSW_ANTE > +ccflags-y += -DTX_TRACK > +ccflags-y += -DHIGH_POWER > +ccflags-y += -DSW_DIG > +ccflags-y += -DRATE_ADAPT > > #enable it for legacy power save, disable it for leisure power save > -EXTRA_CFLAGS += -DENABLE_LPS > +ccflags-y += -DENABLE_LPS > > > -#EXTRA_CFLAGS += -mhard-float -DCONFIG_FORCE_HARD_FLOAT=y > +#ccflags-y := -mhard-float -DCONFIG_FORCE_HARD_FLOAT=y > so every time someone selects "my cpu does not have hard-float they will try it again, and to make sure that it will cause max confusion it sets CONFIG_FORCE_HARD_FLOAT to yes. re, wh > r8187se-objs := \ > r8180_core.o \ -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html