diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2013-06-05 12:26:45 (GMT) |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-07-05 06:10:44 (GMT) |
commit | 9cade1a46c77dfc96d57a3ea6354e95b2a7fcf61 (patch) | |
tree | 52340617645937017301473d5333abb47c4b33cd /drivers/dma/Makefile | |
parent | 61a7649620d54a037c612f9a713abe5178cddc65 (diff) | |
download | linux-9cade1a46c77dfc96d57a3ea6354e95b2a7fcf61.tar.xz |
dma: dw: split driver to library part and platform code
To simplify the driver development let's split driver to library and platform
code parts. It helps us to add PCI driver in future.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
[Fixed compile error and few checkpatch issues]
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/Makefile')
-rw-r--r-- | drivers/dma/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/Makefile b/drivers/dma/Makefile index ac44ca0..6e2a521 100644 --- a/drivers/dma/Makefile +++ b/drivers/dma/Makefile @@ -15,7 +15,7 @@ obj-$(CONFIG_FSL_DMA) += fsldma.o obj-$(CONFIG_MPC512X_DMA) += mpc512x_dma.o obj-$(CONFIG_PPC_BESTCOMM) += bestcomm/ obj-$(CONFIG_MV_XOR) += mv_xor.o -obj-$(CONFIG_DW_DMAC) += dw/ +obj-$(CONFIG_DW_DMAC_CORE) += dw/ obj-$(CONFIG_AT_HDMAC) += at_hdmac.o obj-$(CONFIG_MX3_IPU) += ipu/ obj-$(CONFIG_TXX9_DMAC) += txx9dmac.o |