diff options
author | Corey Minyard <minyard@acm.org> | 2005-09-06 18:18:42 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-07 19:57:48 -0400 |
commit | 1fdd75bd6cfa60a54b6db91d9256a711ab52fef3 (patch) | |
tree | e66e22c592fb16b6b64ffb504edcd6e42833cdbf /drivers/char/ipmi/ipmi_poweroff.c | |
parent | 3ae0e0f9b15b95a2c3e64088d2a85e3f4a707681 (diff) |
[PATCH] ipmi: clean up versioning of the IPMI driver
This adds MODULE_VERSION, MODULE_DESCRIPTION, and MODULE_AUTHOR tags to the
IPMI driver modules. Also changes the MODULE_VERSION to remove the
prepended 'v' on each value, consistent with the module versioning policy.
This patch also removes all the version information from everything except
the ipmi_msghandler module.
Signed-off-by: Matt Domsch <Matt_Domsch@dell.com>
Signed-off-by: Corey Minyard <minyard@acm.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/ipmi/ipmi_poweroff.c')
-rw-r--r-- | drivers/char/ipmi/ipmi_poweroff.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/ipmi/ipmi_poweroff.c b/drivers/char/ipmi/ipmi_poweroff.c index f951c30236c9..1583329ac2ec 100644 --- a/drivers/char/ipmi/ipmi_poweroff.c +++ b/drivers/char/ipmi/ipmi_poweroff.c | |||
@@ -42,7 +42,6 @@ | |||
42 | #include <linux/ipmi_smi.h> | 42 | #include <linux/ipmi_smi.h> |
43 | 43 | ||
44 | #define PFX "IPMI poweroff: " | 44 | #define PFX "IPMI poweroff: " |
45 | #define IPMI_POWEROFF_VERSION "v33" | ||
46 | 45 | ||
47 | /* Where to we insert our poweroff function? */ | 46 | /* Where to we insert our poweroff function? */ |
48 | extern void (*pm_power_off)(void); | 47 | extern void (*pm_power_off)(void); |
@@ -582,8 +581,7 @@ static int ipmi_poweroff_init (void) | |||
582 | struct proc_dir_entry *file; | 581 | struct proc_dir_entry *file; |
583 | 582 | ||
584 | printk ("Copyright (C) 2004 MontaVista Software -" | 583 | printk ("Copyright (C) 2004 MontaVista Software -" |
585 | " IPMI Powerdown via sys_reboot version " | 584 | " IPMI Powerdown via sys_reboot.\n"); |
586 | IPMI_POWEROFF_VERSION ".\n"); | ||
587 | 585 | ||
588 | switch (poweroff_control) { | 586 | switch (poweroff_control) { |
589 | case IPMI_CHASSIS_POWER_CYCLE: | 587 | case IPMI_CHASSIS_POWER_CYCLE: |
@@ -642,3 +640,5 @@ module_exit(ipmi_poweroff_cleanup); | |||
642 | 640 | ||
643 | module_init(ipmi_poweroff_init); | 641 | module_init(ipmi_poweroff_init); |
644 | MODULE_LICENSE("GPL"); | 642 | MODULE_LICENSE("GPL"); |
643 | MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>"); | ||
644 | MODULE_DESCRIPTION("IPMI Poweroff extension to sys_reboot"); | ||