1
0
Fork 0

[PATCH] ide section fixes

a) cleanup_module() should be __exit
b) externs should match reality

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.1
Al Viro 2007-02-01 13:52:38 +00:00 committed by Linus Torvalds
parent aaba6d4bf6
commit eb79722717
1 changed files with 4 additions and 4 deletions

View File

@ -1781,9 +1781,9 @@ done:
return 1;
}
extern void pnpide_init(void);
extern void pnpide_exit(void);
extern void h8300_ide_init(void);
extern void __init pnpide_init(void);
extern void __exit pnpide_exit(void);
extern void __init h8300_ide_init(void);
/*
* probe_for_hwifs() finds/initializes "known" IDE interfaces
@ -2088,7 +2088,7 @@ int __init init_module (void)
return ide_init();
}
void cleanup_module (void)
void __exit cleanup_module (void)
{
int index;