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-Tag: v2.6.37~8^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bca364d30d63825f36a03dcacf390943d4c2cb74;p=platform%2Fkernel%2Flinux-exynos.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 8997d3f..0ff7270 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