diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-08 05:23:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-08 05:23:02 -0400 |
commit | f89f4a06a59f30dec64b2afc4111426fc01e9e12 (patch) | |
tree | a889be831ed7974c0c6d5b7f2f963c33b3f0ac33 /drivers/crypto | |
parent | 9a50aaefc1b896e734bf7faf3d085f71a360ce97 (diff) |
Fix up missing dmaengine header inclusion from qce crypto engine
Commit 7bced397510a ("net_dma: simple removal") removed the long-dead
net_dma code, but unintentionally broke the build for the qualcomm
crypto engine (qce) that had accidentally depended on the inclusion of
<linux/dmaengine.h> through the networking header files that used to
have it.
Add the required dmaengine.h include explicitly to fix the breakage.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/qce/dma.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/crypto/qce/dma.h b/drivers/crypto/qce/dma.h index 805e378d59e9..65bedb81de0b 100644 --- a/drivers/crypto/qce/dma.h +++ b/drivers/crypto/qce/dma.h | |||
@@ -14,6 +14,8 @@ | |||
14 | #ifndef _DMA_H_ | 14 | #ifndef _DMA_H_ |
15 | #define _DMA_H_ | 15 | #define _DMA_H_ |
16 | 16 | ||
17 | #include <linux/dmaengine.h> | ||
18 | |||
17 | /* maximum data transfer block size between BAM and CE */ | 19 | /* maximum data transfer block size between BAM and CE */ |
18 | #define QCE_BAM_BURST_SIZE 64 | 20 | #define QCE_BAM_BURST_SIZE 64 |
19 | 21 | ||