[S390] convert ap_bus printks to pr_xxx macros.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
Martin Schwidefsky 2008-12-25 13:39:46 +01:00
parent 93098bf015
commit 136f7a1c42
1 changed files with 7 additions and 3 deletions

View File

@ -24,6 +24,9 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * 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/module.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/delay.h> #include <linux/delay.h>
@ -1487,12 +1490,13 @@ int __init ap_module_init(void)
int rc, i; int rc, i;
if (ap_domain_index < -1 || ap_domain_index >= AP_DOMAINS) { if (ap_domain_index < -1 || ap_domain_index >= AP_DOMAINS) {
printk(KERN_WARNING "Invalid param: domain = %d. " pr_warning("%d is not a valid cryptographic domain\n",
" Not loading.\n", ap_domain_index); ap_domain_index);
return -EINVAL; return -EINVAL;
} }
if (ap_instructions_available() != 0) { 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; return -ENODEV;
} }
if (ap_interrupts_available()) { if (ap_interrupts_available()) {