[SCSI] fusion: MODULE_VERSION support

* Add modinfo driver version support.
* Change copyright year to 2007.

Signed-off-by: Eric Moore <Eric.Moore@lsi.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>

authored by Eric Moore and committed by James Bottomley 9f4203b3 f99be43b

+22 -14
+2 -1
drivers/message/fusion/mptbase.c
··· 5 5 * For use with LSI Logic PCI chip/adapter(s) 6 6 * running LSI Logic Fusion MPT (Message Passing Technology) firmware. 7 7 * 8 - * Copyright (c) 1999-2005 LSI Logic Corporation 8 + * Copyright (c) 1999-2007 LSI Logic Corporation 9 9 * (mailto:mpt_linux_developer@lsil.com) 10 10 * 11 11 */ ··· 73 73 MODULE_AUTHOR(MODULEAUTHOR); 74 74 MODULE_DESCRIPTION(my_NAME); 75 75 MODULE_LICENSE("GPL"); 76 + MODULE_VERSION(my_VERSION); 76 77 77 78 /* 78 79 * cmd line parameters
+2 -2
drivers/message/fusion/mptbase.h
··· 5 5 * LSIFC9xx/LSI409xx Fibre Channel 6 6 * running LSI Logic Fusion MPT (Message Passing Technology) firmware. 7 7 * 8 - * Copyright (c) 1999-2005 LSI Logic Corporation 8 + * Copyright (c) 1999-2007 LSI Logic Corporation 9 9 * (mailto:mpt_linux_developer@lsil.com) 10 10 * 11 11 */ ··· 72 72 #endif 73 73 74 74 #ifndef COPYRIGHT 75 - #define COPYRIGHT "Copyright (c) 1999-2005 " MODULEAUTHOR 75 + #define COPYRIGHT "Copyright (c) 1999-2007 " MODULEAUTHOR 76 76 #endif 77 77 78 78 #define MPT_LINUX_VERSION_COMMON "3.04.02"
+3 -2
drivers/message/fusion/mptctl.c
··· 4 4 * For use with LSI Logic PCI chip/adapters 5 5 * running LSI Logic Fusion MPT (Message Passing Technology) firmware. 6 6 * 7 - * Copyright (c) 1999-2005 LSI Logic Corporation 7 + * Copyright (c) 1999-2007 LSI Logic Corporation 8 8 * (mailto:mpt_linux_developer@lsil.com) 9 9 * 10 10 */ ··· 66 66 #include <scsi/scsi_host.h> 67 67 #include <scsi/scsi_tcq.h> 68 68 69 - #define COPYRIGHT "Copyright (c) 1999-2005 LSI Logic Corporation" 69 + #define COPYRIGHT "Copyright (c) 1999-2007 LSI Logic Corporation" 70 70 #define MODULEAUTHOR "LSI Logic Corporation" 71 71 #include "mptbase.h" 72 72 #include "mptctl.h" ··· 79 79 MODULE_AUTHOR(MODULEAUTHOR); 80 80 MODULE_DESCRIPTION(my_NAME); 81 81 MODULE_LICENSE("GPL"); 82 + MODULE_VERSION(my_VERSION); 82 83 83 84 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/ 84 85
+1 -1
drivers/message/fusion/mptctl.h
··· 5 5 * LSIFC9xx/LSI409xx Fibre Channel 6 6 * running LSI Logic Fusion MPT (Message Passing Technology) firmware. 7 7 * 8 - * Copyright (c) 1999-2005 LSI Logic Corporation 8 + * Copyright (c) 1999-2007 LSI Logic Corporation 9 9 * (mailto:mpt_linux_developer@lsil.com) 10 10 * 11 11 */
+2 -1
drivers/message/fusion/mptfc.c
··· 3 3 * For use with LSI Logic PCI chip/adapter(s) 4 4 * running LSI Logic Fusion MPT (Message Passing Technology) firmware. 5 5 * 6 - * Copyright (c) 1999-2005 LSI Logic Corporation 6 + * Copyright (c) 1999-2007 LSI Logic Corporation 7 7 * (mailto:mpt_linux_developer@lsil.com) 8 8 * 9 9 */ ··· 75 75 MODULE_AUTHOR(MODULEAUTHOR); 76 76 MODULE_DESCRIPTION(my_NAME); 77 77 MODULE_LICENSE("GPL"); 78 + MODULE_VERSION(my_VERSION); 78 79 79 80 /* Command line args */ 80 81 #define MPTFC_DEV_LOSS_TMO (60)
+3 -1
drivers/message/fusion/mptlan.c
··· 4 4 * For use with LSI Logic Fibre Channel PCI chip/adapters 5 5 * running LSI Logic Fusion MPT (Message Passing Technology) firmware. 6 6 * 7 - * Copyright (c) 2000-2005 LSI Logic Corporation 7 + * Copyright (c) 2000-2007 LSI Logic Corporation 8 8 * 9 9 */ 10 10 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/ ··· 56 56 #include <linux/module.h> 57 57 #include <linux/fs.h> 58 58 59 + #define my_VERSION MPT_LINUX_VERSION_COMMON 59 60 #define MYNAM "mptlan" 60 61 61 62 MODULE_LICENSE("GPL"); 63 + MODULE_VERSION(my_VERSION); 62 64 63 65 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/ 64 66 /*
+1 -1
drivers/message/fusion/mptlan.h
··· 4 4 * For use with LSI Logic Fibre Channel PCI chip/adapters 5 5 * running LSI Logic Fusion MPT (Message Passing Technology) firmware. 6 6 * 7 - * Copyright (c) 2000-2005 LSI Logic Corporation 7 + * Copyright (c) 2000-2007 LSI Logic Corporation 8 8 * 9 9 */ 10 10 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
+3 -2
drivers/message/fusion/mptsas.c
··· 3 3 * For use with LSI Logic PCI chip/adapter(s) 4 4 * running LSI Logic Fusion MPT (Message Passing Technology) firmware. 5 5 * 6 - * Copyright (c) 1999-2005 LSI Logic Corporation 6 + * Copyright (c) 1999-2007 LSI Logic Corporation 7 7 * (mailto:mpt_linux_developer@lsil.com) 8 - * Copyright (c) 2005-2006 Dell 8 + * Copyright (c) 2005-2007 Dell 9 9 */ 10 10 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/ 11 11 /* ··· 75 75 MODULE_AUTHOR(MODULEAUTHOR); 76 76 MODULE_DESCRIPTION(my_NAME); 77 77 MODULE_LICENSE("GPL"); 78 + MODULE_VERSION(my_VERSION); 78 79 79 80 static int mpt_pt_clear; 80 81 module_param(mpt_pt_clear, int, 0);
+2 -1
drivers/message/fusion/mptscsih.c
··· 3 3 * For use with LSI Logic PCI chip/adapter(s) 4 4 * running LSI Logic Fusion MPT (Message Passing Technology) firmware. 5 5 * 6 - * Copyright (c) 1999-2005 LSI Logic Corporation 6 + * Copyright (c) 1999-2007 LSI Logic Corporation 7 7 * (mailto:mpt_linux_developer@lsil.com) 8 8 * 9 9 */ ··· 76 76 MODULE_AUTHOR(MODULEAUTHOR); 77 77 MODULE_DESCRIPTION(my_NAME); 78 78 MODULE_LICENSE("GPL"); 79 + MODULE_VERSION(my_VERSION); 79 80 80 81 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/ 81 82
+1 -1
drivers/message/fusion/mptscsih.h
··· 5 5 * LSIFC9xx/LSI409xx Fibre Channel 6 6 * running LSI Logic Fusion MPT (Message Passing Technology) firmware. 7 7 * 8 - * Copyright (c) 1999-2005 LSI Logic Corporation 8 + * Copyright (c) 1999-2007 LSI Logic Corporation 9 9 * (mailto:mpt_linux_developer@lsil.com) 10 10 * 11 11 */
+2 -1
drivers/message/fusion/mptspi.c
··· 3 3 * For use with LSI Logic PCI chip/adapter(s) 4 4 * running LSI Logic Fusion MPT (Message Passing Technology) firmware. 5 5 * 6 - * Copyright (c) 1999-2005 LSI Logic Corporation 6 + * Copyright (c) 1999-2007 LSI Logic Corporation 7 7 * (mailto:mpt_linux_developer@lsil.com) 8 8 * 9 9 */ ··· 77 77 MODULE_AUTHOR(MODULEAUTHOR); 78 78 MODULE_DESCRIPTION(my_NAME); 79 79 MODULE_LICENSE("GPL"); 80 + MODULE_VERSION(my_VERSION); 80 81 81 82 /* Command line args */ 82 83 static int mpt_saf_te = MPTSCSIH_SAF_TE;