Commit ed3899b2 authored by Aristeu Sergio Rozanski Filho's avatar Aristeu Sergio Rozanski Filho Committed by James Bottomley

[PATCH] qlogic_cs: use own MODULE_ macros

parent 16ec5fe4
...@@ -433,5 +433,8 @@ static void __exit exit_qlogic_cs(void) ...@@ -433,5 +433,8 @@ static void __exit exit_qlogic_cs(void)
qlogic_detach(dev_list); qlogic_detach(dev_list);
} }
MODULE_AUTHOR("Tom Zerucha, Michael Griffith");
MODULE_DESCRIPTION("Driver for the PCMCIA Qlogic FAS SCSI controllers");
MODULE_LICENSE("GPL");
module_init(init_qlogic_cs); module_init(init_qlogic_cs);
module_exit(exit_qlogic_cs); module_exit(exit_qlogic_cs);
...@@ -721,10 +721,6 @@ static const char *qlogicfas_info(struct Scsi_Host *host) ...@@ -721,10 +721,6 @@ static const char *qlogicfas_info(struct Scsi_Host *host)
return priv->qinfo; return priv->qinfo;
} }
MODULE_AUTHOR("Tom Zerucha, Michael Griffith");
MODULE_DESCRIPTION("Driver for the Qlogic FAS SCSI controllers");
MODULE_LICENSE("GPL");
/* /*
* The driver template is also needed for PCMCIA * The driver template is also needed for PCMCIA
*/ */
...@@ -765,6 +761,9 @@ static __exit void qlogicfas_exit(void) ...@@ -765,6 +761,9 @@ static __exit void qlogicfas_exit(void)
qlogicfas_release(priv->shost); qlogicfas_release(priv->shost);
} }
MODULE_AUTHOR("Tom Zerucha, Michael Griffith");
MODULE_DESCRIPTION("Driver for the Qlogic FAS SCSI controllers");
MODULE_LICENSE("GPL");
module_init(qlogicfas_init); module_init(qlogicfas_init);
module_exit(qlogicfas_exit); module_exit(qlogicfas_exit);
#endif /* ifndef PCMCIA */ #endif /* ifndef PCMCIA */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment