diff options
-rw-r--r-- | Documentation/DocBook/device-drivers.tmpl | 3 | ||||
-rw-r--r-- | MAINTAINERS | 4 | ||||
-rw-r--r-- | drivers/Makefile | 1 | ||||
-rw-r--r-- | drivers/base/Makefile | 1 | ||||
-rw-r--r-- | drivers/dma-buf/Makefile | 1 | ||||
-rw-r--r-- | drivers/dma-buf/dma-buf.c (renamed from drivers/base/dma-buf.c) | 0 | ||||
-rw-r--r-- | drivers/dma-buf/reservation.c (renamed from drivers/base/reservation.c) | 0 |
7 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/DocBook/device-drivers.tmpl b/Documentation/DocBook/device-drivers.tmpl index cc63f30de166..ac61ebd92875 100644 --- a/Documentation/DocBook/device-drivers.tmpl +++ b/Documentation/DocBook/device-drivers.tmpl | |||
@@ -128,8 +128,7 @@ X!Edrivers/base/interface.c | |||
128 | !Edrivers/base/bus.c | 128 | !Edrivers/base/bus.c |
129 | </sect1> | 129 | </sect1> |
130 | <sect1><title>Device Drivers DMA Management</title> | 130 | <sect1><title>Device Drivers DMA Management</title> |
131 | !Edrivers/base/dma-buf.c | 131 | !Edrivers/dma-buf/dma-buf.c |
132 | !Edrivers/base/reservation.c | ||
133 | !Iinclude/linux/reservation.h | 132 | !Iinclude/linux/reservation.h |
134 | !Edrivers/base/dma-coherent.c | 133 | !Edrivers/base/dma-coherent.c |
135 | !Edrivers/base/dma-mapping.c | 134 | !Edrivers/base/dma-mapping.c |
diff --git a/MAINTAINERS b/MAINTAINERS index 6813d0aa5ecf..2eefee768d46 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -2900,8 +2900,8 @@ S: Maintained | |||
2900 | L: linux-media@vger.kernel.org | 2900 | L: linux-media@vger.kernel.org |
2901 | L: dri-devel@lists.freedesktop.org | 2901 | L: dri-devel@lists.freedesktop.org |
2902 | L: linaro-mm-sig@lists.linaro.org | 2902 | L: linaro-mm-sig@lists.linaro.org |
2903 | F: drivers/base/dma-buf* | 2903 | F: drivers/dma-buf/ |
2904 | F: include/linux/dma-buf* | 2904 | F: include/linux/dma-buf* include/linux/reservation.h |
2905 | F: Documentation/dma-buf-sharing.txt | 2905 | F: Documentation/dma-buf-sharing.txt |
2906 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | 2906 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git |
2907 | 2907 | ||
diff --git a/drivers/Makefile b/drivers/Makefile index f98b50d8251d..c00337be5351 100644 --- a/drivers/Makefile +++ b/drivers/Makefile | |||
@@ -61,6 +61,7 @@ obj-$(CONFIG_FB_INTEL) += video/fbdev/intelfb/ | |||
61 | 61 | ||
62 | obj-$(CONFIG_PARPORT) += parport/ | 62 | obj-$(CONFIG_PARPORT) += parport/ |
63 | obj-y += base/ block/ misc/ mfd/ nfc/ | 63 | obj-y += base/ block/ misc/ mfd/ nfc/ |
64 | obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf/ | ||
64 | obj-$(CONFIG_NUBUS) += nubus/ | 65 | obj-$(CONFIG_NUBUS) += nubus/ |
65 | obj-y += macintosh/ | 66 | obj-y += macintosh/ |
66 | obj-$(CONFIG_IDE) += ide/ | 67 | obj-$(CONFIG_IDE) += ide/ |
diff --git a/drivers/base/Makefile b/drivers/base/Makefile index 04b314e0fa51..4aab26ec0292 100644 --- a/drivers/base/Makefile +++ b/drivers/base/Makefile | |||
@@ -10,7 +10,6 @@ obj-$(CONFIG_DMA_CMA) += dma-contiguous.o | |||
10 | obj-y += power/ | 10 | obj-y += power/ |
11 | obj-$(CONFIG_HAS_DMA) += dma-mapping.o | 11 | obj-$(CONFIG_HAS_DMA) += dma-mapping.o |
12 | obj-$(CONFIG_HAVE_GENERIC_DMA_COHERENT) += dma-coherent.o | 12 | obj-$(CONFIG_HAVE_GENERIC_DMA_COHERENT) += dma-coherent.o |
13 | obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf.o reservation.o | ||
14 | obj-$(CONFIG_ISA) += isa.o | 13 | obj-$(CONFIG_ISA) += isa.o |
15 | obj-$(CONFIG_FW_LOADER) += firmware_class.o | 14 | obj-$(CONFIG_FW_LOADER) += firmware_class.o |
16 | obj-$(CONFIG_NUMA) += node.o | 15 | obj-$(CONFIG_NUMA) += node.o |
diff --git a/drivers/dma-buf/Makefile b/drivers/dma-buf/Makefile new file mode 100644 index 000000000000..4a4f4c9bacd0 --- /dev/null +++ b/drivers/dma-buf/Makefile | |||
@@ -0,0 +1 @@ | |||
obj-y := dma-buf.o reservation.o | |||
diff --git a/drivers/base/dma-buf.c b/drivers/dma-buf/dma-buf.c index 840c7fa80983..840c7fa80983 100644 --- a/drivers/base/dma-buf.c +++ b/drivers/dma-buf/dma-buf.c | |||
diff --git a/drivers/base/reservation.c b/drivers/dma-buf/reservation.c index a73fbf3b8e56..a73fbf3b8e56 100644 --- a/drivers/base/reservation.c +++ b/drivers/dma-buf/reservation.c | |||