summaryrefslogtreecommitdiff
path: root/crypto/ofb.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2021-03-14 16:34:35 +0100
committerThomas Gleixner <tglx@linutronix.de>2021-03-14 16:34:35 +0100
commit7868a653ebb1dda22465ec1fa86f5f5ac124687a (patch)
tree88a0786e5ecfcbb71ea635e52f877138cc940361 /crypto/ofb.c
parent6514ad8fef693f2033f0135707cdbd49c7874737 (diff)
parent6bb62f2b2b65481f232042e2be2de4452e2a7bb1 (diff)
downloadlinux-crypto-7868a653ebb1dda22465ec1fa86f5f5ac124687a.tar.gz
linux-crypto-7868a653ebb1dda22465ec1fa86f5f5ac124687a.zip
Merge tag 'irqchip-fixes-5.12-1' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent
Pull irqchip fixes from Marc Zyngier: - More compatible strings for the Ingenic irqchip (introducing the JZ4760B SoC) - Select GENERIC_IRQ_MULTI_HANDLER on the ARM ep93xx platform - Drop all GENERIC_IRQ_MULTI_HANDLER selections from the irqchip Kconfig, now relying on the architecture to get it right - Drop the debugfs_file field from struct irq_domain, now that debugfs can track things on its own
Diffstat (limited to 'crypto/ofb.c')
-rw-r--r--crypto/ofb.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/ofb.c b/crypto/ofb.c
index 2ec68e3f..b630fdec 100644
--- a/crypto/ofb.c
+++ b/crypto/ofb.c
@@ -8,6 +8,7 @@
*/
#include <crypto/algapi.h>
+#include <crypto/internal/cipher.h>
#include <crypto/internal/skcipher.h>
#include <linux/err.h>
#include <linux/init.h>
@@ -102,3 +103,4 @@ module_exit(crypto_ofb_module_exit);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("OFB block cipher mode of operation");
MODULE_ALIAS_CRYPTO("ofb");
+MODULE_IMPORT_NS(CRYPTO_INTERNAL);