aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/ipmi/ipmi_si_intf.c
diff options
context:
space:
mode:
authorCorey Minyard <minyard@acm.org>2005-09-06 18:18:42 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-09-07 19:57:48 -0400
commit1fdd75bd6cfa60a54b6db91d9256a711ab52fef3 (patch)
treee66e22c592fb16b6b64ffb504edcd6e42833cdbf /drivers/char/ipmi/ipmi_si_intf.c
parent3ae0e0f9b15b95a2c3e64088d2a85e3f4a707681 (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_si_intf.c')
-rw-r--r--drivers/char/ipmi/ipmi_si_intf.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c
index 4fb36d4142f..b43172aee4c 100644
--- a/drivers/char/ipmi/ipmi_si_intf.c
+++ b/drivers/char/ipmi/ipmi_si_intf.c
@@ -77,8 +77,6 @@ static inline void add_usec_to_timer(struct timer_list *t, long v)
77#include <linux/init.h> 77#include <linux/init.h>
78#include <linux/dmi.h> 78#include <linux/dmi.h>
79 79
80#define IPMI_SI_VERSION "v33"
81
82/* Measure times between events in the driver. */ 80/* Measure times between events in the driver. */
83#undef DEBUG_TIMING 81#undef DEBUG_TIMING
84 82
@@ -2310,15 +2308,7 @@ static __init int init_ipmi_si(void)
2310 } 2308 }
2311 } 2309 }
2312 2310
2313 printk(KERN_INFO "IPMI System Interface driver version " 2311 printk(KERN_INFO "IPMI System Interface driver.\n");
2314 IPMI_SI_VERSION);
2315 if (kcs_smi_handlers.version)
2316 printk(", KCS version %s", kcs_smi_handlers.version);
2317 if (smic_smi_handlers.version)
2318 printk(", SMIC version %s", smic_smi_handlers.version);
2319 if (bt_smi_handlers.version)
2320 printk(", BT version %s", bt_smi_handlers.version);
2321 printk("\n");
2322 2312
2323#ifdef CONFIG_X86 2313#ifdef CONFIG_X86
2324 dmi_find_bmc(); 2314 dmi_find_bmc();
@@ -2430,3 +2420,5 @@ static __exit void cleanup_ipmi_si(void)
2430module_exit(cleanup_ipmi_si); 2420module_exit(cleanup_ipmi_si);
2431 2421
2432MODULE_LICENSE("GPL"); 2422MODULE_LICENSE("GPL");
2423MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
2424MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT system interfaces.");