diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2020-08-21 15:42:10 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2020-08-25 04:24:07 +0300 |
commit | 3033fd177bcc3e0762b43cb82cf584dbb07064f1 (patch) | |
tree | 4cdc892107550c8346a804a1475feccc1847d9e2 /drivers/crypto/stm32 | |
parent | 3d29e98d1d7550fc959a7ad4258bd804b533b493 (diff) | |
download | linux-3033fd177bcc3e0762b43cb82cf584dbb07064f1.tar.xz |
crypto: stm32 - Add missing header inclusions
The stm32 driver was missing a number of includes that we being
pulled in by unrelated header files. As the indirect inclusion
went away, it now fails to build.
This patch adds the missing inclusions.
Reported-by: kernel test robot <lkp@intel.com>
Fixes: 0c3dc787a62a ("crypto: algapi - Remove skbuff.h inclusion")
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/stm32')
-rw-r--r-- | drivers/crypto/stm32/stm32-crc32.c | 2 | ||||
-rw-r--r-- | drivers/crypto/stm32/stm32-hash.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/drivers/crypto/stm32/stm32-crc32.c b/drivers/crypto/stm32/stm32-crc32.c index 3ba41148c2a4..5fb706b68309 100644 --- a/drivers/crypto/stm32/stm32-crc32.c +++ b/drivers/crypto/stm32/stm32-crc32.c @@ -7,6 +7,8 @@ #include <linux/bitrev.h> #include <linux/clk.h> #include <linux/crc32poly.h> +#include <linux/io.h> +#include <linux/kernel.h> #include <linux/module.h> #include <linux/mod_devicetable.h> #include <linux/platform_device.h> diff --git a/drivers/crypto/stm32/stm32-hash.c b/drivers/crypto/stm32/stm32-hash.c index 03c5e6683805..092eaabda238 100644 --- a/drivers/crypto/stm32/stm32-hash.c +++ b/drivers/crypto/stm32/stm32-hash.c @@ -9,6 +9,7 @@ #include <linux/clk.h> #include <linux/crypto.h> #include <linux/delay.h> +#include <linux/dma-mapping.h> #include <linux/dmaengine.h> #include <linux/interrupt.h> #include <linux/io.h> |