diff options
author | Baoyou Xie <baoyou.xie@linaro.org> | 2016-08-26 05:56:24 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-08-31 11:00:41 -0400 |
commit | 1ac6b731b81cbbd2b6da389949f65f2d1e453d69 (patch) | |
tree | 8c5dc97d63ee9e64d19a1ef878fd6fdd073232a9 | |
parent | cc2f1908c6b8f6257b7da9124ce6d859c13cba3b (diff) |
crypto: caam - add missing header dependencies
We get 1 warning when biuld kernel with W=1:
drivers/crypto/caam/ctrl.c:398:5: warning: no previous prototype for 'caam_get_era' [-Wmissing-prototypes]
In fact, this function is declared in drivers/crypto/caam/ctrl.h,
so this patch add missing header dependencies.
Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | drivers/crypto/caam/ctrl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/crypto/caam/ctrl.c b/drivers/crypto/caam/ctrl.c index f4c044f5bcb2..72ff19658985 100644 --- a/drivers/crypto/caam/ctrl.c +++ b/drivers/crypto/caam/ctrl.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include "jr.h" | 14 | #include "jr.h" |
15 | #include "desc_constr.h" | 15 | #include "desc_constr.h" |
16 | #include "error.h" | 16 | #include "error.h" |
17 | #include "ctrl.h" | ||
17 | 18 | ||
18 | bool caam_little_end; | 19 | bool caam_little_end; |
19 | EXPORT_SYMBOL(caam_little_end); | 20 | EXPORT_SYMBOL(caam_little_end); |