diff options
| author | Peter Huewe <peterhuewe@gmx.de> | 2009-08-22 19:46:55 -0400 |
|---|---|---|
| committer | Jiri Kosina <jkosina@suse.cz> | 2009-09-21 09:14:58 -0400 |
| commit | 0e6b9e8c2c7b55569333a15e39d684dec986e226 (patch) | |
| tree | 39d171da2f252e2ddca551a470114701ea3cff67 | |
| parent | a419aef8b858a2bdb98df60336063d28df4b272f (diff) | |
trivial: add __init macro/ fix of __exit macro location in ipmi_poweroff.c
Trivial patch which adds the __init to the module_init function of
drivers/char/ipmi/ipmy_poweroff.c and corrects the location of __exit for the
cleanup function.
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Acked-by: Corey Minyard <minyard@acm.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
| -rw-r--r-- | drivers/char/ipmi/ipmi_poweroff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/ipmi/ipmi_poweroff.c b/drivers/char/ipmi/ipmi_poweroff.c index a261bd735dfb..2e66b5f773dd 100644 --- a/drivers/char/ipmi/ipmi_poweroff.c +++ b/drivers/char/ipmi/ipmi_poweroff.c | |||
| @@ -691,7 +691,7 @@ static struct ctl_table_header *ipmi_table_header; | |||
| 691 | /* | 691 | /* |
| 692 | * Startup and shutdown functions. | 692 | * Startup and shutdown functions. |
| 693 | */ | 693 | */ |
| 694 | static int ipmi_poweroff_init(void) | 694 | static int __init ipmi_poweroff_init(void) |
| 695 | { | 695 | { |
| 696 | int rv; | 696 | int rv; |
| 697 | 697 | ||
| @@ -725,7 +725,7 @@ static int ipmi_poweroff_init(void) | |||
| 725 | } | 725 | } |
| 726 | 726 | ||
| 727 | #ifdef MODULE | 727 | #ifdef MODULE |
| 728 | static __exit void ipmi_poweroff_cleanup(void) | 728 | static void __exit ipmi_poweroff_cleanup(void) |
| 729 | { | 729 | { |
| 730 | int rv; | 730 | int rv; |
| 731 | 731 | ||
