From: Tracey Dent Date: Sat, 6 Nov 2010 21:01:37 +0000 (-0400) Subject: drivers/dma/ioat: Use the ccflag-y instead of EXTRA_CFLAGS X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=bca364d30d63825f36a03dcacf390943d4c2cb74;p=linux-beck.git drivers/dma/ioat: Use the ccflag-y instead of EXTRA_CFLAGS Changed Makefile to use -y instead of -objs. Following (documentation/kbuild/makefiles.txt). Signed-off-by: Tracey Dent Signed-off-by: Andrew Morton Signed-off-by: Dan Williams --- diff --git a/drivers/dma/ioat/Makefile b/drivers/dma/ioat/Makefile index 8997d3fb9051..0ff7270af25b 100644 --- a/drivers/dma/ioat/Makefile +++ b/drivers/dma/ioat/Makefile @@ -1,2 +1,2 @@ obj-$(CONFIG_INTEL_IOATDMA) += ioatdma.o -ioatdma-objs := pci.o dma.o dma_v2.o dma_v3.o dca.o +ioatdma-y := pci.o dma.o dma_v2.o dma_v3.o dca.o