diff options
author | Peter Oberparleiter <peter.oberparleiter@de.ibm.com> | 2006-01-06 03:19:27 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-06 11:33:53 -0500 |
commit | 9bbc8346fb21fad3f678220b067450e436e45dbf (patch) | |
tree | 80934102daf1e9a6b2c0a387ec619c367cf6a271 /drivers | |
parent | 3b793060e768197d525e892fd1f84dbc8767cada (diff) |
[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: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/s390/char/sclp_cpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/char/sclp_cpi.c b/drivers/s390/char/sclp_cpi.c index 5a6cef2dfa13..80f7f31310e6 100644 --- a/drivers/s390/char/sclp_cpi.c +++ b/drivers/s390/char/sclp_cpi.c | |||
@@ -204,7 +204,7 @@ cpi_module_init(void) | |||
204 | printk(KERN_WARNING "cpi: no control program identification " | 204 | printk(KERN_WARNING "cpi: no control program identification " |
205 | "support\n"); | 205 | "support\n"); |
206 | sclp_unregister(&sclp_cpi_event); | 206 | sclp_unregister(&sclp_cpi_event); |
207 | return -ENOTSUPP; | 207 | return -EOPNOTSUPP; |
208 | } | 208 | } |
209 | 209 | ||
210 | req = cpi_prepare_req(); | 210 | req = cpi_prepare_req(); |