mirror of
https://github.com/adulau/aha.git
synced 2025-01-02 14:13:18 +00:00
[PATCH] "s390: multiple subchannel sets support" fix
It seems this patch got dropped (it was in addition to the `s390: improve response code handling in chsc_enable_facility()' patch). Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
0ee10a4423
commit
e843e280cb
1 changed files with 3 additions and 0 deletions
|
@ -409,6 +409,9 @@ __init_channel_subsystem(struct subchannel_id schid, void *data)
|
|||
/* -ENXIO: no more subchannels. */
|
||||
case -ENXIO:
|
||||
return ret;
|
||||
/* -EIO: this subchannel set not supported. */
|
||||
case -EIO:
|
||||
return ret;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue