diff options
author | Michał Wróbel <michal.wrobel@flytronic.pl> | 2012-04-05 20:34:21 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2012-04-05 20:34:21 +0800 |
commit | 75258723dadd99a214f00bff34fa0fc6e7b6d463 (patch) | |
tree | c0582a3cf597602e9292ec534ad435de8e64f5bb /drivers/crypto | |
parent | 25c3d30c918207556ae1d6e663150ebdf902186b (diff) | |
download | linux-3.10-75258723dadd99a214f00bff34fa0fc6e7b6d463.tar.gz linux-3.10-75258723dadd99a214f00bff34fa0fc6e7b6d463.tar.bz2 linux-3.10-75258723dadd99a214f00bff34fa0fc6e7b6d463.zip |
crypto: ixp4xx - include fix
Before commit de47725421ad5627a5c905f4e40bb844ebc06d29 ("include: replace
linux/module.h with "struct module" wherever possible") <linux/module.h> was
implicitly included through <linux/platform_device.h> -> <linux/device.h>.
Signed-off-by: Michał Wróbel <michal.wrobel@flytronic.pl>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/ixp4xx_crypto.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/crypto/ixp4xx_crypto.c b/drivers/crypto/ixp4xx_crypto.c index 0053d7ebb5c..8f3f74ce8c7 100644 --- a/drivers/crypto/ixp4xx_crypto.c +++ b/drivers/crypto/ixp4xx_crypto.c @@ -18,6 +18,7 @@ #include <linux/interrupt.h> #include <linux/spinlock.h> #include <linux/gfp.h> +#include <linux/module.h> #include <crypto/ctr.h> #include <crypto/des.h> |