aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <[email protected]>2012-11-05 10:00:20 +0000
committerVinod Koul <[email protected]>2013-01-07 22:05:09 -0800
commit06eeb114026804a9a9cb83eaeb00e24aaa40ba0b (patch)
treeb1478dbe3e3ec2fa9429032dd25f369fcffd2005
parent7369f56e3e7193583576ec705d95647b04838b05 (diff)
async_tx: fix build for async_memset
Add missing <linux/module.h> include. Cc: Dan Williams <[email protected]> Cc: Tomasz Figa <[email protected]> Signed-off-by: Bartlomiej Zolnierkiewicz <[email protected]> Signed-off-by: Kyungmin Park <[email protected]> Signed-off-by: Dan Williams <[email protected]>
-rw-r--r--crypto/async_tx/async_memset.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/async_tx/async_memset.c b/crypto/async_tx/async_memset.c
index 58e4a8752aee..05a4d1e00148 100644
--- a/crypto/async_tx/async_memset.c
+++ b/crypto/async_tx/async_memset.c
@@ -25,6 +25,7 @@
*/
#include <linux/kernel.h>
#include <linux/interrupt.h>
+#include <linux/module.h>
#include <linux/mm.h>
#include <linux/dma-mapping.h>
#include <linux/async_tx.h>