Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dma-buf: move to drivers/dma-buf

Signed-off-by: Maarten Lankhorst <maarten.lankhorst@canonical.com>
Acked-by: Sumit Semwal <sumit.semwal@linaro.org>
Acked-by: Daniel Vetter <daniel@ffwll.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Maarten Lankhorst and committed by
Greg Kroah-Hartman
35fac7e3 650f81d4

+5 -5
+1 -2
Documentation/DocBook/device-drivers.tmpl
··· 128 128 !Edrivers/base/bus.c 129 129 </sect1> 130 130 <sect1><title>Device Drivers DMA Management</title> 131 - !Edrivers/base/dma-buf.c 132 - !Edrivers/base/reservation.c 131 + !Edrivers/dma-buf/dma-buf.c 133 132 !Iinclude/linux/reservation.h 134 133 !Edrivers/base/dma-coherent.c 135 134 !Edrivers/base/dma-mapping.c
+2 -2
MAINTAINERS
··· 2900 2900 L: linux-media@vger.kernel.org 2901 2901 L: dri-devel@lists.freedesktop.org 2902 2902 L: linaro-mm-sig@lists.linaro.org 2903 - F: drivers/base/dma-buf* 2904 - F: include/linux/dma-buf* 2903 + F: drivers/dma-buf/ 2904 + F: include/linux/dma-buf* include/linux/reservation.h 2905 2905 F: Documentation/dma-buf-sharing.txt 2906 2906 T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git 2907 2907
+1
drivers/Makefile
··· 61 61 62 62 obj-$(CONFIG_PARPORT) += parport/ 63 63 obj-y += base/ block/ misc/ mfd/ nfc/ 64 + obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf/ 64 65 obj-$(CONFIG_NUBUS) += nubus/ 65 66 obj-y += macintosh/ 66 67 obj-$(CONFIG_IDE) += ide/
-1
drivers/base/Makefile
··· 10 10 obj-y += power/ 11 11 obj-$(CONFIG_HAS_DMA) += dma-mapping.o 12 12 obj-$(CONFIG_HAVE_GENERIC_DMA_COHERENT) += dma-coherent.o 13 - obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf.o reservation.o 14 13 obj-$(CONFIG_ISA) += isa.o 15 14 obj-$(CONFIG_FW_LOADER) += firmware_class.o 16 15 obj-$(CONFIG_NUMA) += node.o
drivers/base/dma-buf.c drivers/dma-buf/dma-buf.c
drivers/base/reservation.c drivers/dma-buf/reservation.c
+1
drivers/dma-buf/Makefile
··· 1 + obj-y := dma-buf.o reservation.o