OSDN Git Service

Merge tag 'printk-for-5.5' of git://git.kernel.org/pub/scm/linux/kernel/git/pmladek...
[tomoyo/tomoyo-test1.git] / drivers / crypto / n2_core.c
index dc15b06..40b8101 100644 (file)
@@ -381,8 +381,8 @@ static int n2_hash_cra_init(struct crypto_tfm *tfm)
        fallback_tfm = crypto_alloc_ahash(fallback_driver_name, 0,
                                          CRYPTO_ALG_NEED_FALLBACK);
        if (IS_ERR(fallback_tfm)) {
-               pr_warning("Fallback driver '%s' could not be loaded!\n",
-                          fallback_driver_name);
+               pr_warn("Fallback driver '%s' could not be loaded!\n",
+                       fallback_driver_name);
                err = PTR_ERR(fallback_tfm);
                goto out;
        }
@@ -418,16 +418,16 @@ static int n2_hmac_cra_init(struct crypto_tfm *tfm)
        fallback_tfm = crypto_alloc_ahash(fallback_driver_name, 0,
                                          CRYPTO_ALG_NEED_FALLBACK);
        if (IS_ERR(fallback_tfm)) {
-               pr_warning("Fallback driver '%s' could not be loaded!\n",
-                          fallback_driver_name);
+               pr_warn("Fallback driver '%s' could not be loaded!\n",
+                       fallback_driver_name);
                err = PTR_ERR(fallback_tfm);
                goto out;
        }
 
        child_shash = crypto_alloc_shash(n2alg->child_alg, 0, 0);
        if (IS_ERR(child_shash)) {
-               pr_warning("Child shash '%s' could not be loaded!\n",
-                          n2alg->child_alg);
+               pr_warn("Child shash '%s' could not be loaded!\n",
+                       n2alg->child_alg);
                err = PTR_ERR(child_shash);
                goto out_free_fallback;
        }