From: David S. Miller Date: Sat, 15 Sep 2012 16:17:10 +0000 (-0700) Subject: sparc64: Add missing pr_fmt define to crypto opcode drivers. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=71741680a9858a7fcba54acf5b321d185abef1e8;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git sparc64: Add missing pr_fmt define to crypto opcode drivers. The hashes and crc32c had it, only the AES/DES/CAMELLIA drivers were missing it. Signed-off-by: David S. Miller --- diff --git a/arch/sparc/crypto/aes_glue.c b/arch/sparc/crypto/aes_glue.c index 180bed441aa0..8f1c9980f637 100644 --- a/arch/sparc/crypto/aes_glue.c +++ b/arch/sparc/crypto/aes_glue.c @@ -14,6 +14,8 @@ * Copyright (c) 2010, Intel Corporation. */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + #include #include #include diff --git a/arch/sparc/crypto/camellia_glue.c b/arch/sparc/crypto/camellia_glue.c index f45ae69d0d1a..42905c084299 100644 --- a/arch/sparc/crypto/camellia_glue.c +++ b/arch/sparc/crypto/camellia_glue.c @@ -3,6 +3,8 @@ * Copyright (C) 2012 David S. Miller */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + #include #include #include diff --git a/arch/sparc/crypto/des_glue.c b/arch/sparc/crypto/des_glue.c index 77d2ad6e899e..c4940c2d3073 100644 --- a/arch/sparc/crypto/des_glue.c +++ b/arch/sparc/crypto/des_glue.c @@ -3,6 +3,8 @@ * Copyright (C) 2012 David S. Miller */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + #include #include #include