diff options
Diffstat (limited to 'drivers/char/ipmi/ipmi_si_intf.c')
-rw-r--r-- | drivers/char/ipmi/ipmi_si_intf.c | 14 |
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 4fb36d4142fb..b43172aee4c6 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) | |||
2430 | module_exit(cleanup_ipmi_si); | 2420 | module_exit(cleanup_ipmi_si); |
2431 | 2421 | ||
2432 | MODULE_LICENSE("GPL"); | 2422 | MODULE_LICENSE("GPL"); |
2423 | MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>"); | ||
2424 | MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT system interfaces."); | ||