diff options
author | David S. Miller <davem@davemloft.net> | 2012-09-15 12:17:10 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-09-15 12:17:10 -0400 |
commit | 71741680a9858a7fcba54acf5b321d185abef1e8 (patch) | |
tree | 2c780366f8726c1228c00eaeb35e8dd6bb315f78 /arch/sparc | |
parent | 1080362425793f67e36dc690973e13e4a9631b4d (diff) |
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 <davem@davemloft.net>
Diffstat (limited to 'arch/sparc')
-rw-r--r-- | arch/sparc/crypto/aes_glue.c | 2 | ||||
-rw-r--r-- | arch/sparc/crypto/camellia_glue.c | 2 | ||||
-rw-r--r-- | arch/sparc/crypto/des_glue.c | 2 |
3 files changed, 6 insertions, 0 deletions
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 @@ | |||
14 | * Copyright (c) 2010, Intel Corporation. | 14 | * Copyright (c) 2010, Intel Corporation. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
18 | |||
17 | #include <linux/crypto.h> | 19 | #include <linux/crypto.h> |
18 | #include <linux/init.h> | 20 | #include <linux/init.h> |
19 | #include <linux/module.h> | 21 | #include <linux/module.h> |
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 @@ | |||
3 | * Copyright (C) 2012 David S. Miller <davem@davemloft.net> | 3 | * Copyright (C) 2012 David S. Miller <davem@davemloft.net> |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
7 | |||
6 | #include <linux/crypto.h> | 8 | #include <linux/crypto.h> |
7 | #include <linux/init.h> | 9 | #include <linux/init.h> |
8 | #include <linux/module.h> | 10 | #include <linux/module.h> |
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 @@ | |||
3 | * Copyright (C) 2012 David S. Miller <davem@davemloft.net> | 3 | * Copyright (C) 2012 David S. Miller <davem@davemloft.net> |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
7 | |||
6 | #include <linux/crypto.h> | 8 | #include <linux/crypto.h> |
7 | #include <linux/init.h> | 9 | #include <linux/init.h> |
8 | #include <linux/module.h> | 10 | #include <linux/module.h> |