diff options
Diffstat (limited to 'drivers/s390/cio/cio.c')
-rw-r--r-- | drivers/s390/cio/cio.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/drivers/s390/cio/cio.c b/drivers/s390/cio/cio.c index ea1defba5693..f2708d65be5a 100644 --- a/drivers/s390/cio/cio.c +++ b/drivers/s390/cio/cio.c | |||
@@ -47,8 +47,8 @@ cio_setup (char *parm) | |||
47 | else if (!strcmp (parm, "no")) | 47 | else if (!strcmp (parm, "no")) |
48 | cio_show_msg = 0; | 48 | cio_show_msg = 0; |
49 | else | 49 | else |
50 | printk (KERN_ERR "cio_setup : invalid cio_msg parameter '%s'", | 50 | printk(KERN_ERR "cio: cio_setup: " |
51 | parm); | 51 | "invalid cio_msg parameter '%s'", parm); |
52 | return 1; | 52 | return 1; |
53 | } | 53 | } |
54 | 54 | ||
@@ -80,7 +80,6 @@ cio_debug_init (void) | |||
80 | goto out_unregister; | 80 | goto out_unregister; |
81 | debug_register_view (cio_debug_crw_id, &debug_sprintf_view); | 81 | debug_register_view (cio_debug_crw_id, &debug_sprintf_view); |
82 | debug_set_level (cio_debug_crw_id, 2); | 82 | debug_set_level (cio_debug_crw_id, 2); |
83 | pr_debug("debugging initialized\n"); | ||
84 | return 0; | 83 | return 0; |
85 | 84 | ||
86 | out_unregister: | 85 | out_unregister: |
@@ -90,7 +89,7 @@ out_unregister: | |||
90 | debug_unregister (cio_debug_trace_id); | 89 | debug_unregister (cio_debug_trace_id); |
91 | if (cio_debug_crw_id) | 90 | if (cio_debug_crw_id) |
92 | debug_unregister (cio_debug_crw_id); | 91 | debug_unregister (cio_debug_crw_id); |
93 | pr_debug("could not initialize debugging\n"); | 92 | printk(KERN_WARNING"cio: could not initialize debugging\n"); |
94 | return -1; | 93 | return -1; |
95 | } | 94 | } |
96 | 95 | ||
@@ -568,7 +567,7 @@ cio_validate_subchannel (struct subchannel *sch, struct subchannel_id schid) | |||
568 | */ | 567 | */ |
569 | if (sch->st != 0) { | 568 | if (sch->st != 0) { |
570 | CIO_DEBUG(KERN_INFO, 0, | 569 | CIO_DEBUG(KERN_INFO, 0, |
571 | "Subchannel 0.%x.%04x reports " | 570 | "cio: Subchannel 0.%x.%04x reports " |
572 | "non-I/O subchannel type %04X\n", | 571 | "non-I/O subchannel type %04X\n", |
573 | sch->schid.ssid, sch->schid.sch_no, sch->st); | 572 | sch->schid.ssid, sch->schid.sch_no, sch->st); |
574 | /* We stop here for non-io subchannels. */ | 573 | /* We stop here for non-io subchannels. */ |
@@ -601,7 +600,7 @@ cio_validate_subchannel (struct subchannel *sch, struct subchannel_id schid) | |||
601 | sch->lpm = sch->schib.pmcw.pam & sch->opm; | 600 | sch->lpm = sch->schib.pmcw.pam & sch->opm; |
602 | 601 | ||
603 | CIO_DEBUG(KERN_INFO, 0, | 602 | CIO_DEBUG(KERN_INFO, 0, |
604 | "Detected device %04x on subchannel 0.%x.%04X" | 603 | "cio: Detected device %04x on subchannel 0.%x.%04X" |
605 | " - PIM = %02X, PAM = %02X, POM = %02X\n", | 604 | " - PIM = %02X, PAM = %02X, POM = %02X\n", |
606 | sch->schib.pmcw.dev, sch->schid.ssid, | 605 | sch->schib.pmcw.dev, sch->schid.ssid, |
607 | sch->schid.sch_no, sch->schib.pmcw.pim, | 606 | sch->schid.sch_no, sch->schib.pmcw.pim, |
@@ -766,7 +765,7 @@ cio_get_console_sch_no(void) | |||
766 | /* unlike in 2.4, we cannot autoprobe here, since | 765 | /* unlike in 2.4, we cannot autoprobe here, since |
767 | * the channel subsystem is not fully initialized. | 766 | * the channel subsystem is not fully initialized. |
768 | * With some luck, the HWC console can take over */ | 767 | * With some luck, the HWC console can take over */ |
769 | printk(KERN_WARNING "No ccw console found!\n"); | 768 | printk(KERN_WARNING "cio: No ccw console found!\n"); |
770 | return -1; | 769 | return -1; |
771 | } | 770 | } |
772 | return console_irq; | 771 | return console_irq; |