diff options
author | Dan Williams <dan.j.williams@intel.com> | 2009-07-28 17:32:12 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2009-07-28 17:32:12 -0400 |
commit | 584ec22759c06cdfc189c03a727f20038526245b (patch) | |
tree | 54f4ebb99c3f66f62aeb38d091d1840d88e2ee57 | |
parent | 07a2039b8eb0af4ff464efd3dfd95de5c02648c6 (diff) |
ioat: move to drivers/dma/ioat/
When first created the ioat driver was the only inhabitant of
drivers/dma/. Now, it is the only multi-file (more than a .c and a .h)
driver in the directory. Moving it to an ioat/ subdirectory allows the
naming convention to be cleaned up, and allows for future splitting of
the source files by hardware version (v1, v2, and v3).
Signed-off-by: Maciej Sosnowski <maciej.sosnowski@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
-rw-r--r-- | drivers/dma/Makefile | 3 | ||||
-rw-r--r-- | drivers/dma/ioat/Makefile | 2 | ||||
-rw-r--r-- | drivers/dma/ioat/dca.c (renamed from drivers/dma/ioat_dca.c) | 4 | ||||
-rw-r--r-- | drivers/dma/ioat/dma.c (renamed from drivers/dma/ioat_dma.c) | 6 | ||||
-rw-r--r-- | drivers/dma/ioat/dma.h (renamed from drivers/dma/ioatdma.h) | 2 | ||||
-rw-r--r-- | drivers/dma/ioat/hw.h (renamed from drivers/dma/ioatdma_hw.h) | 0 | ||||
-rw-r--r-- | drivers/dma/ioat/pci.c (renamed from drivers/dma/ioat.c) | 6 | ||||
-rw-r--r-- | drivers/dma/ioat/registers.h (renamed from drivers/dma/ioatdma_registers.h) | 0 | ||||
-rw-r--r-- | drivers/idle/i7300_idle.c | 4 |
9 files changed, 14 insertions, 13 deletions
diff --git a/drivers/dma/Makefile b/drivers/dma/Makefile index 2e5dc96700d2..a1cb2857bba6 100644 --- a/drivers/dma/Makefile +++ b/drivers/dma/Makefile | |||
@@ -1,8 +1,7 @@ | |||
1 | obj-$(CONFIG_DMA_ENGINE) += dmaengine.o | 1 | obj-$(CONFIG_DMA_ENGINE) += dmaengine.o |
2 | obj-$(CONFIG_NET_DMA) += iovlock.o | 2 | obj-$(CONFIG_NET_DMA) += iovlock.o |
3 | obj-$(CONFIG_DMATEST) += dmatest.o | 3 | obj-$(CONFIG_DMATEST) += dmatest.o |
4 | obj-$(CONFIG_INTEL_IOATDMA) += ioatdma.o | 4 | obj-$(CONFIG_INTEL_IOATDMA) += ioat/ |
5 | ioatdma-objs := ioat.o ioat_dma.o ioat_dca.o | ||
6 | obj-$(CONFIG_INTEL_IOP_ADMA) += iop-adma.o | 5 | obj-$(CONFIG_INTEL_IOP_ADMA) += iop-adma.o |
7 | obj-$(CONFIG_FSL_DMA) += fsldma.o | 6 | obj-$(CONFIG_FSL_DMA) += fsldma.o |
8 | obj-$(CONFIG_MV_XOR) += mv_xor.o | 7 | obj-$(CONFIG_MV_XOR) += mv_xor.o |
diff --git a/drivers/dma/ioat/Makefile b/drivers/dma/ioat/Makefile new file mode 100644 index 000000000000..2ce3d3a4270b --- /dev/null +++ b/drivers/dma/ioat/Makefile | |||
@@ -0,0 +1,2 @@ | |||
1 | obj-$(CONFIG_INTEL_IOATDMA) += ioatdma.o | ||
2 | ioatdma-objs := pci.o dma.o dca.o | ||
diff --git a/drivers/dma/ioat_dca.c b/drivers/dma/ioat/dca.c index c012a1e15043..af1c762dd9d0 100644 --- a/drivers/dma/ioat_dca.c +++ b/drivers/dma/ioat/dca.c | |||
@@ -33,8 +33,8 @@ | |||
33 | #define cpu_physical_id(cpu) (cpuid_ebx(1) >> 24) | 33 | #define cpu_physical_id(cpu) (cpuid_ebx(1) >> 24) |
34 | #endif | 34 | #endif |
35 | 35 | ||
36 | #include "ioatdma.h" | 36 | #include "dma.h" |
37 | #include "ioatdma_registers.h" | 37 | #include "registers.h" |
38 | 38 | ||
39 | /* | 39 | /* |
40 | * Bit 7 of a tag map entry is the "valid" bit, if it is set then bits 0:6 | 40 | * Bit 7 of a tag map entry is the "valid" bit, if it is set then bits 0:6 |
diff --git a/drivers/dma/ioat_dma.c b/drivers/dma/ioat/dma.c index a600fc0f7962..648797e83295 100644 --- a/drivers/dma/ioat_dma.c +++ b/drivers/dma/ioat/dma.c | |||
@@ -34,9 +34,9 @@ | |||
34 | #include <linux/dma-mapping.h> | 34 | #include <linux/dma-mapping.h> |
35 | #include <linux/workqueue.h> | 35 | #include <linux/workqueue.h> |
36 | #include <linux/i7300_idle.h> | 36 | #include <linux/i7300_idle.h> |
37 | #include "ioatdma.h" | 37 | #include "dma.h" |
38 | #include "ioatdma_registers.h" | 38 | #include "registers.h" |
39 | #include "ioatdma_hw.h" | 39 | #include "hw.h" |
40 | 40 | ||
41 | #define to_ioat_chan(chan) container_of(chan, struct ioat_dma_chan, common) | 41 | #define to_ioat_chan(chan) container_of(chan, struct ioat_dma_chan, common) |
42 | #define to_ioatdma_device(dev) container_of(dev, struct ioatdma_device, common) | 42 | #define to_ioatdma_device(dev) container_of(dev, struct ioatdma_device, common) |
diff --git a/drivers/dma/ioatdma.h b/drivers/dma/ioat/dma.h index a52ff4bd4601..e80e787fe64f 100644 --- a/drivers/dma/ioatdma.h +++ b/drivers/dma/ioat/dma.h | |||
@@ -22,7 +22,7 @@ | |||
22 | #define IOATDMA_H | 22 | #define IOATDMA_H |
23 | 23 | ||
24 | #include <linux/dmaengine.h> | 24 | #include <linux/dmaengine.h> |
25 | #include "ioatdma_hw.h" | 25 | #include "hw.h" |
26 | #include <linux/init.h> | 26 | #include <linux/init.h> |
27 | #include <linux/dmapool.h> | 27 | #include <linux/dmapool.h> |
28 | #include <linux/cache.h> | 28 | #include <linux/cache.h> |
diff --git a/drivers/dma/ioatdma_hw.h b/drivers/dma/ioat/hw.h index afa57eef86c9..afa57eef86c9 100644 --- a/drivers/dma/ioatdma_hw.h +++ b/drivers/dma/ioat/hw.h | |||
diff --git a/drivers/dma/ioat.c b/drivers/dma/ioat/pci.c index 2225bb6ba3d1..d7948bfd8fba 100644 --- a/drivers/dma/ioat.c +++ b/drivers/dma/ioat/pci.c | |||
@@ -30,9 +30,9 @@ | |||
30 | #include <linux/pci.h> | 30 | #include <linux/pci.h> |
31 | #include <linux/interrupt.h> | 31 | #include <linux/interrupt.h> |
32 | #include <linux/dca.h> | 32 | #include <linux/dca.h> |
33 | #include "ioatdma.h" | 33 | #include "dma.h" |
34 | #include "ioatdma_registers.h" | 34 | #include "registers.h" |
35 | #include "ioatdma_hw.h" | 35 | #include "hw.h" |
36 | 36 | ||
37 | MODULE_VERSION(IOAT_DMA_VERSION); | 37 | MODULE_VERSION(IOAT_DMA_VERSION); |
38 | MODULE_LICENSE("GPL"); | 38 | MODULE_LICENSE("GPL"); |
diff --git a/drivers/dma/ioatdma_registers.h b/drivers/dma/ioat/registers.h index 49bc277424f8..49bc277424f8 100644 --- a/drivers/dma/ioatdma_registers.h +++ b/drivers/dma/ioat/registers.h | |||
diff --git a/drivers/idle/i7300_idle.c b/drivers/idle/i7300_idle.c index 949c97ff57e3..f2ec7243549e 100644 --- a/drivers/idle/i7300_idle.c +++ b/drivers/idle/i7300_idle.c | |||
@@ -29,8 +29,8 @@ | |||
29 | 29 | ||
30 | #include <asm/idle.h> | 30 | #include <asm/idle.h> |
31 | 31 | ||
32 | #include "../dma/ioatdma_hw.h" | 32 | #include "../dma/ioat/hw.h" |
33 | #include "../dma/ioatdma_registers.h" | 33 | #include "../dma/ioat/registers.h" |
34 | 34 | ||
35 | #define I7300_IDLE_DRIVER_VERSION "1.55" | 35 | #define I7300_IDLE_DRIVER_VERSION "1.55" |
36 | #define I7300_PRINT "i7300_idle:" | 36 | #define I7300_PRINT "i7300_idle:" |