diff options
Diffstat (limited to 'drivers/s390/cio/css.c')
-rw-r--r-- | drivers/s390/cio/css.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/s390/cio/css.c b/drivers/s390/cio/css.c index 5e1235c6aba0..771576bb2928 100644 --- a/drivers/s390/cio/css.c +++ b/drivers/s390/cio/css.c | |||
@@ -1030,7 +1030,16 @@ subsys_initcall_sync(channel_subsystem_init_sync); | |||
1030 | 1030 | ||
1031 | void channel_subsystem_reinit(void) | 1031 | void channel_subsystem_reinit(void) |
1032 | { | 1032 | { |
1033 | struct channel_path *chp; | ||
1034 | struct chp_id chpid; | ||
1035 | |||
1033 | chsc_enable_facility(CHSC_SDA_OC_MSS); | 1036 | chsc_enable_facility(CHSC_SDA_OC_MSS); |
1037 | chp_id_for_each(&chpid) { | ||
1038 | chp = chpid_to_chp(chpid); | ||
1039 | if (!chp) | ||
1040 | continue; | ||
1041 | chsc_determine_base_channel_path_desc(chpid, &chp->desc); | ||
1042 | } | ||
1034 | } | 1043 | } |
1035 | 1044 | ||
1036 | #ifdef CONFIG_PROC_FS | 1045 | #ifdef CONFIG_PROC_FS |