diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2008-12-25 13:39:46 +0100 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2008-12-25 13:39:24 +0100 |
commit | 136f7a1c4239be91e3e0f53532944b9aab7b58f8 (patch) | |
tree | 26575d846678db729cb9a224583804eb06034ea7 /drivers/s390/crypto | |
parent | 93098bf01578763bb84b627fe893f219cc44b995 (diff) | |
download | kernel_samsung_espresso10-136f7a1c4239be91e3e0f53532944b9aab7b58f8.zip kernel_samsung_espresso10-136f7a1c4239be91e3e0f53532944b9aab7b58f8.tar.gz kernel_samsung_espresso10-136f7a1c4239be91e3e0f53532944b9aab7b58f8.tar.bz2 |
[S390] convert ap_bus printks to pr_xxx macros.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390/crypto')
-rw-r--r-- | drivers/s390/crypto/ap_bus.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/s390/crypto/ap_bus.c b/drivers/s390/crypto/ap_bus.c index a6aee68..1f5f5d2 100644 --- a/drivers/s390/crypto/ap_bus.c +++ b/drivers/s390/crypto/ap_bus.c @@ -24,6 +24,9 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#define KMSG_COMPONENT "ap" +#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt + #include <linux/module.h> #include <linux/init.h> #include <linux/delay.h> @@ -1487,12 +1490,13 @@ int __init ap_module_init(void) int rc, i; if (ap_domain_index < -1 || ap_domain_index >= AP_DOMAINS) { - printk(KERN_WARNING "Invalid param: domain = %d. " - " Not loading.\n", ap_domain_index); + pr_warning("%d is not a valid cryptographic domain\n", + ap_domain_index); return -EINVAL; } if (ap_instructions_available() != 0) { - printk(KERN_WARNING "AP instructions not installed.\n"); + pr_warning("The hardware system does not support " + "AP instructions\n"); return -ENODEV; } if (ap_interrupts_available()) { |