diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2008-12-25 07:39:48 -0500 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2008-12-25 07:39:24 -0500 |
commit | b3ff088b3025c3583194edd7576215b61333111f (patch) | |
tree | 125e2a3dbf22ac597ff4cb10573c0cb6d7aed41c /drivers/s390/char/sclp_config.c | |
parent | 8f7c502c267c0e5e2dbbbdea9f3e7e85bbc95694 (diff) |
[S390] convert sclp printks to pr_xxx macros.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390/char/sclp_config.c')
-rw-r--r-- | drivers/s390/char/sclp_config.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/s390/char/sclp_config.c b/drivers/s390/char/sclp_config.c index 4cebd6ee6d27..b497afe061cc 100644 --- a/drivers/s390/char/sclp_config.c +++ b/drivers/s390/char/sclp_config.c | |||
@@ -5,15 +5,17 @@ | |||
5 | * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com> | 5 | * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com> |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #define KMSG_COMPONENT "sclp_config" | ||
9 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt | ||
10 | |||
8 | #include <linux/init.h> | 11 | #include <linux/init.h> |
9 | #include <linux/errno.h> | 12 | #include <linux/errno.h> |
10 | #include <linux/cpu.h> | 13 | #include <linux/cpu.h> |
11 | #include <linux/sysdev.h> | 14 | #include <linux/sysdev.h> |
12 | #include <linux/workqueue.h> | 15 | #include <linux/workqueue.h> |
13 | #include <asm/smp.h> | 16 | #include <asm/smp.h> |
14 | #include "sclp.h" | ||
15 | 17 | ||
16 | #define TAG "sclp_config: " | 18 | #include "sclp.h" |
17 | 19 | ||
18 | struct conf_mgm_data { | 20 | struct conf_mgm_data { |
19 | u8 reserved; | 21 | u8 reserved; |
@@ -31,7 +33,7 @@ static void sclp_cpu_capability_notify(struct work_struct *work) | |||
31 | int cpu; | 33 | int cpu; |
32 | struct sys_device *sysdev; | 34 | struct sys_device *sysdev; |
33 | 35 | ||
34 | printk(KERN_WARNING TAG "cpu capability changed.\n"); | 36 | pr_warning("cpu capability changed.\n"); |
35 | get_online_cpus(); | 37 | get_online_cpus(); |
36 | for_each_online_cpu(cpu) { | 38 | for_each_online_cpu(cpu) { |
37 | sysdev = get_cpu_sysdev(cpu); | 39 | sysdev = get_cpu_sysdev(cpu); |
@@ -78,7 +80,7 @@ static int __init sclp_conf_init(void) | |||
78 | return rc; | 80 | return rc; |
79 | 81 | ||
80 | if (!(sclp_conf_register.sclp_send_mask & EVTYP_CONFMGMDATA_MASK)) { | 82 | if (!(sclp_conf_register.sclp_send_mask & EVTYP_CONFMGMDATA_MASK)) { |
81 | printk(KERN_WARNING TAG "no configuration management.\n"); | 83 | pr_warning("no configuration management.\n"); |
82 | sclp_unregister(&sclp_conf_register); | 84 | sclp_unregister(&sclp_conf_register); |
83 | rc = -ENOSYS; | 85 | rc = -ENOSYS; |
84 | } | 86 | } |