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

Commit e843e280 authored by Greg Smith's avatar Greg Smith Committed by Linus Torvalds
Browse files

[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: default avatarCornelia Huck <cornelia.huck@de.ibm.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 0ee10a44
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -409,6 +409,9 @@ __init_channel_subsystem(struct subchannel_id schid, void *data)
		/* -ENXIO: no more subchannels. */
		/* -ENXIO: no more subchannels. */
		case -ENXIO:
		case -ENXIO:
			return ret;
			return ret;
		/* -EIO: this subchannel set not supported. */
		case -EIO:
			return ret;
		default:
		default:
			return 0;
			return 0;
		}
		}