diff options
-rw-r--r-- | arch/s390/hypfs/hypfs_diag.c | 2 | ||||
-rw-r--r-- | arch/s390/kernel/vmlinux.lds.S | 2 | ||||
-rw-r--r-- | drivers/s390/block/dasd_eer.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/arch/s390/hypfs/hypfs_diag.c b/arch/s390/hypfs/hypfs_diag.c index fee5aee605f6..75144efbb92b 100644 --- a/arch/s390/hypfs/hypfs_diag.c +++ b/arch/s390/hypfs/hypfs_diag.c | |||
@@ -535,7 +535,7 @@ __init int hypfs_diag_init(void) | |||
535 | return rc; | 535 | return rc; |
536 | } | 536 | } |
537 | 537 | ||
538 | __exit void hypfs_diag_exit(void) | 538 | void hypfs_diag_exit(void) |
539 | { | 539 | { |
540 | diag224_delete_name_table(); | 540 | diag224_delete_name_table(); |
541 | diag204_free_buffer(); | 541 | diag204_free_buffer(); |
diff --git a/arch/s390/kernel/vmlinux.lds.S b/arch/s390/kernel/vmlinux.lds.S index df0c16ab8e92..af9e69a03011 100644 --- a/arch/s390/kernel/vmlinux.lds.S +++ b/arch/s390/kernel/vmlinux.lds.S | |||
@@ -118,7 +118,7 @@ SECTIONS | |||
118 | 118 | ||
119 | /* Sections to be discarded */ | 119 | /* Sections to be discarded */ |
120 | /DISCARD/ : { | 120 | /DISCARD/ : { |
121 | *(.exitcall.exit) | 121 | *(.exit.text) *(.exit.data) *(.exitcall.exit) |
122 | } | 122 | } |
123 | 123 | ||
124 | /* Stabs debugging sections. */ | 124 | /* Stabs debugging sections. */ |
diff --git a/drivers/s390/block/dasd_eer.c b/drivers/s390/block/dasd_eer.c index da65f1b032f5..e0bf30ebb215 100644 --- a/drivers/s390/block/dasd_eer.c +++ b/drivers/s390/block/dasd_eer.c | |||
@@ -678,7 +678,7 @@ int __init dasd_eer_init(void) | |||
678 | return 0; | 678 | return 0; |
679 | } | 679 | } |
680 | 680 | ||
681 | void __exit dasd_eer_exit(void) | 681 | void dasd_eer_exit(void) |
682 | { | 682 | { |
683 | WARN_ON(misc_deregister(&dasd_eer_dev) != 0); | 683 | WARN_ON(misc_deregister(&dasd_eer_dev) != 0); |
684 | } | 684 | } |