Skip to content

Commit

Permalink
[S390] __exit cleanup.
Browse files Browse the repository at this point in the history
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
  • Loading branch information
Heiko Carstens authored and Martin Schwidefsky committed Sep 20, 2006
1 parent 0fee644 commit 1375fc1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arch/s390/hypfs/hypfs_diag.c
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ __init int hypfs_diag_init(void)
return rc;
}

__exit void hypfs_diag_exit(void)
void hypfs_diag_exit(void)
{
diag224_delete_name_table();
diag204_free_buffer();
Expand Down
2 changes: 1 addition & 1 deletion arch/s390/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ SECTIONS

/* Sections to be discarded */
/DISCARD/ : {
*(.exitcall.exit)
*(.exit.text) *(.exit.data) *(.exitcall.exit)
}

/* Stabs debugging sections. */
Expand Down
2 changes: 1 addition & 1 deletion drivers/s390/block/dasd_eer.c
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ int __init dasd_eer_init(void)
return 0;
}

void __exit dasd_eer_exit(void)
void dasd_eer_exit(void)
{
WARN_ON(misc_deregister(&dasd_eer_dev) != 0);
}

0 comments on commit 1375fc1

Please sign in to comment.