diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-03-26 10:24:01 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2009-03-26 10:24:10 -0400 |
commit | f5daba1d4116d964435ddd99f32b6c80448a496b (patch) | |
tree | 0c4ace40971e9cc455b556a3d5691b64a24044b5 /drivers/s390/cio/css.c | |
parent | 70193af9188113c9b4ff3dde1aed9f9c8f7c4f93 (diff) |
[S390] split/move machine check handler code
Split machine check handler code and move it to cio and kernel code
where it belongs to. No functional change.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390/cio/css.c')
-rw-r--r-- | drivers/s390/cio/css.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/s390/cio/css.c b/drivers/s390/cio/css.c index 8019288bc6de..a5fc56371ba8 100644 --- a/drivers/s390/cio/css.c +++ b/drivers/s390/cio/css.c | |||
@@ -18,8 +18,8 @@ | |||
18 | #include <linux/list.h> | 18 | #include <linux/list.h> |
19 | #include <linux/reboot.h> | 19 | #include <linux/reboot.h> |
20 | #include <asm/isc.h> | 20 | #include <asm/isc.h> |
21 | #include <asm/crw.h> | ||
21 | 22 | ||
22 | #include "../s390mach.h" | ||
23 | #include "css.h" | 23 | #include "css.h" |
24 | #include "cio.h" | 24 | #include "cio.h" |
25 | #include "cio_debug.h" | 25 | #include "cio_debug.h" |
@@ -765,7 +765,7 @@ init_channel_subsystem (void) | |||
765 | if (ret) | 765 | if (ret) |
766 | goto out; | 766 | goto out; |
767 | 767 | ||
768 | ret = s390_register_crw_handler(CRW_RSC_SCH, css_process_crw); | 768 | ret = crw_register_handler(CRW_RSC_SCH, css_process_crw); |
769 | if (ret) | 769 | if (ret) |
770 | goto out; | 770 | goto out; |
771 | 771 | ||
@@ -845,7 +845,7 @@ out_unregister: | |||
845 | out_bus: | 845 | out_bus: |
846 | bus_unregister(&css_bus_type); | 846 | bus_unregister(&css_bus_type); |
847 | out: | 847 | out: |
848 | s390_unregister_crw_handler(CRW_RSC_CSS); | 848 | crw_unregister_handler(CRW_RSC_CSS); |
849 | chsc_free_sei_area(); | 849 | chsc_free_sei_area(); |
850 | kfree(slow_subchannel_set); | 850 | kfree(slow_subchannel_set); |
851 | pr_alert("The CSS device driver initialization failed with " | 851 | pr_alert("The CSS device driver initialization failed with " |