Skip to content
Snippets Groups Projects
Commit 9bbc8346 authored by Peter Oberparleiter's avatar Peter Oberparleiter Committed by Linus Torvalds
Browse files

[PATCH] s390: fix invalid return code in sclp_cpi


When the sclp_cpi module is loaded on a system which does not support the
required SCLP call (e.g.  on z/VM), ENOSUPP is returned to user space.  The
correct return value is EOPNOTSUPP.

Signed-off-by: default avatarPeter Oberparleiter <peter.oberparleiter@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 3b793060
No related branches found
No related tags found
No related merge requests found
...@@ -204,7 +204,7 @@ cpi_module_init(void) ...@@ -204,7 +204,7 @@ cpi_module_init(void)
printk(KERN_WARNING "cpi: no control program identification " printk(KERN_WARNING "cpi: no control program identification "
"support\n"); "support\n");
sclp_unregister(&sclp_cpi_event); sclp_unregister(&sclp_cpi_event);
return -ENOTSUPP; return -EOPNOTSUPP;
} }
req = cpi_prepare_req(); req = cpi_prepare_req();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment