diff options
author | Tracey Dent <tdent48227@gmail.com> | 2010-11-06 17:01:37 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2010-12-04 15:03:06 -0800 |
commit | bca364d30d63825f36a03dcacf390943d4c2cb74 (patch) | |
tree | cbb5dec99c272e1bb64e3072557df08e328bd966 /drivers/dma | |
parent | 87e51107323a84e26a5004337217fc954e8d9545 (diff) | |
download | op-kernel-dev-bca364d30d63825f36a03dcacf390943d4c2cb74.zip op-kernel-dev-bca364d30d63825f36a03dcacf390943d4c2cb74.tar.gz |
drivers/dma/ioat: Use the ccflag-y instead of EXTRA_CFLAGS
Changed Makefile to use <modules>-y instead of <modules>-objs. Following
(documentation/kbuild/makefiles.txt).
Signed-off-by: Tracey Dent <tdent48227@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/ioat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |