diff options
-rw-r--r-- | crypto/algapi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/algapi.c b/crypto/algapi.c index 6149a6e09643..7a1ae87f1683 100644 --- a/crypto/algapi.c +++ b/crypto/algapi.c | |||
@@ -495,7 +495,8 @@ static struct crypto_template *__crypto_lookup_template(const char *name) | |||
495 | 495 | ||
496 | struct crypto_template *crypto_lookup_template(const char *name) | 496 | struct crypto_template *crypto_lookup_template(const char *name) |
497 | { | 497 | { |
498 | return try_then_request_module(__crypto_lookup_template(name), name); | 498 | return try_then_request_module(__crypto_lookup_template(name), "%s", |
499 | name); | ||
499 | } | 500 | } |
500 | EXPORT_SYMBOL_GPL(crypto_lookup_template); | 501 | EXPORT_SYMBOL_GPL(crypto_lookup_template); |
501 | 502 | ||