diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2019-01-07 12:07:38 +0100 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2019-01-07 13:27:13 +0100 |
commit | 69da8be90d5e85e60b5377c47384154b9dabf592 (patch) | |
tree | b83e230892a29f80ff1619823a5f1275375b199c /drivers/dma/dw/Makefile | |
parent | dmaengine: dw: Remove unused internal property (diff) | |
download | linux-69da8be90d5e85e60b5377c47384154b9dabf592.tar.xz linux-69da8be90d5e85e60b5377c47384154b9dabf592.zip |
dmaengine: dw: Split DW and iDMA 32-bit operations
Here is a kinda big refactoring that should have been done
in the first place, when Intel iDMA 32-bit support appeared.
It splits operations which are different to Synopsys DesignWare and
Intel iDMA 32-bit controllers.
No functional change intended.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma/dw/Makefile')
-rw-r--r-- | drivers/dma/dw/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/dw/Makefile b/drivers/dma/dw/Makefile index 2b949c2e4504..63ed895c09aa 100644 --- a/drivers/dma/dw/Makefile +++ b/drivers/dma/dw/Makefile @@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-2.0 obj-$(CONFIG_DW_DMAC_CORE) += dw_dmac_core.o -dw_dmac_core-objs := core.o +dw_dmac_core-objs := core.o dw.o idma32.o obj-$(CONFIG_DW_DMAC) += dw_dmac.o dw_dmac-objs := platform.o |