diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2015-05-18 11:46:15 (GMT) |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2015-06-12 12:46:39 (GMT) |
commit | 4983a501afede12f95d26e1e213f8f2e9eda1871 (patch) | |
tree | f16d35cf4bbd0aa3c97b09409e251d0f4ec63dae /drivers/dma | |
parent | fbea28a2afb4251f985af52eb0180f097acaee16 (diff) | |
download | linux-4983a501afede12f95d26e1e213f8f2e9eda1871.tar.xz |
dmaengine: Revert "drivers/dma: remove unused support for MEMSET operations"
This reverts commit 48a9db462d99494583dad829969616ac90a8df4e.
Some platforms actually need support for the memset operations. Bring it back.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/dmaengine.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/dma/dmaengine.c b/drivers/dma/dmaengine.c index a4c860d..c079381 100644 --- a/drivers/dma/dmaengine.c +++ b/drivers/dma/dmaengine.c @@ -832,6 +832,8 @@ int dma_async_device_register(struct dma_device *device) !device->device_prep_dma_pq); BUG_ON(dma_has_cap(DMA_PQ_VAL, device->cap_mask) && !device->device_prep_dma_pq_val); + BUG_ON(dma_has_cap(DMA_MEMSET, device->cap_mask) && + !device->device_prep_dma_memset); BUG_ON(dma_has_cap(DMA_INTERRUPT, device->cap_mask) && !device->device_prep_dma_interrupt); BUG_ON(dma_has_cap(DMA_SG, device->cap_mask) && |