diff options
author | Cornelia Huck <cornelia.huck@de.ibm.com> | 2008-07-14 03:58:58 -0400 |
---|---|---|
committer | Heiko Carstens <heiko.carstens@de.ibm.com> | 2008-07-14 04:02:10 -0400 |
commit | 3a3fc29a6d0626fb4897b7391c4e956efbacd394 (patch) | |
tree | 7107a7883f44c6350d8d85bab7a1871b6cb342e6 /drivers/s390/cio/css.c | |
parent | 75784c00876c88ca6e955c39cbb5d47cf408fd3c (diff) |
[S390] cio: Introduce abstract isc definitions.
Replace the numeric values for I/O interruption subclass usage
with abstract definitions and collect them all in asm/isc.h.
This gives us a better overview of which iscs are actually used
and makes it possible to better spread out isc usage in the
future.
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Diffstat (limited to 'drivers/s390/cio/css.c')
-rw-r--r-- | drivers/s390/cio/css.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/s390/cio/css.c b/drivers/s390/cio/css.c index ebed2212778d..b24618b5362e 100644 --- a/drivers/s390/cio/css.c +++ b/drivers/s390/cio/css.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <linux/errno.h> | 13 | #include <linux/errno.h> |
14 | #include <linux/list.h> | 14 | #include <linux/list.h> |
15 | #include <linux/reboot.h> | 15 | #include <linux/reboot.h> |
16 | #include <asm/isc.h> | ||
16 | 17 | ||
17 | #include "../s390mach.h" | 18 | #include "../s390mach.h" |
18 | #include "css.h" | 19 | #include "css.h" |
@@ -804,7 +805,8 @@ init_channel_subsystem (void) | |||
804 | goto out_pseudo; | 805 | goto out_pseudo; |
805 | css_init_done = 1; | 806 | css_init_done = 1; |
806 | 807 | ||
807 | ctl_set_bit(6, 28); | 808 | /* Enable default isc for I/O subchannels. */ |
809 | ctl_set_bit(6, 31 - IO_SCH_ISC); | ||
808 | 810 | ||
809 | for_each_subchannel(__init_channel_subsystem, NULL); | 811 | for_each_subchannel(__init_channel_subsystem, NULL); |
810 | return 0; | 812 | return 0; |