mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-03-19 21:44:08 +00:00
Fix up missing dmaengine header inclusion from qce crypto engine
Commit 7bced39751
("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>
This commit is contained in:
parent
9a50aaefc1
commit
f89f4a06a5
1 changed files with 2 additions and 0 deletions
|
@ -14,6 +14,8 @@
|
||||||
#ifndef _DMA_H_
|
#ifndef _DMA_H_
|
||||||
#define _DMA_H_
|
#define _DMA_H_
|
||||||
|
|
||||||
|
#include <linux/dmaengine.h>
|
||||||
|
|
||||||
/* maximum data transfer block size between BAM and CE */
|
/* maximum data transfer block size between BAM and CE */
|
||||||
#define QCE_BAM_BURST_SIZE 64
|
#define QCE_BAM_BURST_SIZE 64
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue