Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a12c53f4 authored by Martin Schwidefsky's avatar Martin Schwidefsky Committed by Heiko Carstens
Browse files

[S390] Cleanup sclp printk messages.

parent 1a89dd8f
Loading
Loading
Loading
Loading
+3 −5
Original line number Original line Diff line number Diff line
@@ -784,11 +784,9 @@ sclp_check_handler(__u16 code)
	/* Is this the interrupt we are waiting for? */
	/* Is this the interrupt we are waiting for? */
	if (finished_sccb == 0)
	if (finished_sccb == 0)
		return;
		return;
	if (finished_sccb != (u32) (addr_t) sclp_init_sccb) {
	if (finished_sccb != (u32) (addr_t) sclp_init_sccb)
		printk(KERN_WARNING SCLP_HEADER "unsolicited interrupt "
		panic("sclp: unsolicited interrupt for buffer at 0x%x\n",
		       "for buffer at 0x%x\n", finished_sccb);
		      finished_sccb);
		return;
	}
	spin_lock(&sclp_lock);
	spin_lock(&sclp_lock);
	if (sclp_running_state == sclp_running_state_running) {
	if (sclp_running_state == sclp_running_state_running) {
		sclp_init_req.status = SCLP_REQ_DONE;
		sclp_init_req.status = SCLP_REQ_DONE;
+0 −2
Original line number Original line Diff line number Diff line
@@ -20,8 +20,6 @@
#include "sclp_rw.h"
#include "sclp_rw.h"
#include "sclp_tty.h"
#include "sclp_tty.h"


#define SCLP_CON_PRINT_HEADER "sclp console driver: "

#define sclp_console_major 4		/* TTYAUX_MAJOR */
#define sclp_console_major 4		/* TTYAUX_MAJOR */
#define sclp_console_minor 64
#define sclp_console_minor 64
#define sclp_console_name  "ttyS"
#define sclp_console_name  "ttyS"
+1 −3
Original line number Original line Diff line number Diff line
@@ -85,10 +85,8 @@ static int __init sclp_conf_init(void)
	INIT_WORK(&sclp_cpu_change_work, sclp_cpu_change_notify);
	INIT_WORK(&sclp_cpu_change_work, sclp_cpu_change_notify);


	rc = sclp_register(&sclp_conf_register);
	rc = sclp_register(&sclp_conf_register);
	if (rc) {
	if (rc)
		printk(KERN_ERR TAG "failed to register (%d).\n", rc);
		return rc;
		return rc;
	}


	if (!(sclp_conf_register.sclp_send_mask & EVTYP_CONFMGMDATA_MASK)) {
	if (!(sclp_conf_register.sclp_send_mask & EVTYP_CONFMGMDATA_MASK)) {
		printk(KERN_WARNING TAG "no configuration management.\n");
		printk(KERN_WARNING TAG "no configuration management.\n");
+2 −10
Original line number Original line Diff line number Diff line
@@ -126,21 +126,15 @@ static int cpi_req(void)
	int response;
	int response;


	rc = sclp_register(&sclp_cpi_event);
	rc = sclp_register(&sclp_cpi_event);
	if (rc) {
	if (rc)
		printk(KERN_WARNING "cpi: could not register "
			"to hardware console.\n");
		goto out;
		goto out;
	}
	if (!(sclp_cpi_event.sclp_receive_mask & EVTYP_CTLPROGIDENT_MASK)) {
	if (!(sclp_cpi_event.sclp_receive_mask & EVTYP_CTLPROGIDENT_MASK)) {
		printk(KERN_WARNING "cpi: no control program "
			"identification support\n");
		rc = -EOPNOTSUPP;
		rc = -EOPNOTSUPP;
		goto out_unregister;
		goto out_unregister;
	}
	}


	req = cpi_prepare_req();
	req = cpi_prepare_req();
	if (IS_ERR(req)) {
	if (IS_ERR(req)) {
		printk(KERN_WARNING "cpi: could not allocate request\n");
		rc = PTR_ERR(req);
		rc = PTR_ERR(req);
		goto out_unregister;
		goto out_unregister;
	}
	}
@@ -150,10 +144,8 @@ static int cpi_req(void)


	/* Add request to sclp queue */
	/* Add request to sclp queue */
	rc = sclp_add_request(req);
	rc = sclp_add_request(req);
	if (rc) {
	if (rc)
		printk(KERN_WARNING "cpi: could not start request\n");
		goto out_free_req;
		goto out_free_req;
	}


	wait_for_completion(&completion);
	wait_for_completion(&completion);


+1 −7
Original line number Original line Diff line number Diff line
@@ -51,13 +51,7 @@ static struct sclp_register sclp_quiesce_event = {
static int __init
static int __init
sclp_quiesce_init(void)
sclp_quiesce_init(void)
{
{
	int rc;
	return sclp_register(&sclp_quiesce_event);

	rc = sclp_register(&sclp_quiesce_event);
	if (rc)
		printk(KERN_WARNING "sclp: could not register quiesce handler "
		       "(rc=%d)\n", rc);
	return rc;
}
}


module_init(sclp_quiesce_init);
module_init(sclp_quiesce_init);
Loading