[S390] sclp: remove unnecessary sendmask check
The sendmask check is not needed. Remove it. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
0f1959f506
commit
1b60f68f66
|
@ -71,21 +71,9 @@ static struct sclp_register sclp_conf_register =
|
||||||
|
|
||||||
static int __init sclp_conf_init(void)
|
static int __init sclp_conf_init(void)
|
||||||
{
|
{
|
||||||
int rc;
|
|
||||||
|
|
||||||
INIT_WORK(&sclp_cpu_capability_work, sclp_cpu_capability_notify);
|
INIT_WORK(&sclp_cpu_capability_work, sclp_cpu_capability_notify);
|
||||||
INIT_WORK(&sclp_cpu_change_work, sclp_cpu_change_notify);
|
INIT_WORK(&sclp_cpu_change_work, sclp_cpu_change_notify);
|
||||||
|
return sclp_register(&sclp_conf_register);
|
||||||
rc = sclp_register(&sclp_conf_register);
|
|
||||||
if (rc)
|
|
||||||
return rc;
|
|
||||||
|
|
||||||
if (!(sclp_conf_register.sclp_send_mask & EVTYP_CONFMGMDATA_MASK)) {
|
|
||||||
pr_warning("no configuration management.\n");
|
|
||||||
sclp_unregister(&sclp_conf_register);
|
|
||||||
rc = -ENOSYS;
|
|
||||||
}
|
|
||||||
return rc;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
__initcall(sclp_conf_init);
|
__initcall(sclp_conf_init);
|
||||||
|
|
Loading…
Reference in New Issue