Commit fc992e33 authored by Sunil Goutham's avatar Sunil Goutham Committed by David S. Miller

octeontx2-af: Remove driver version and fix authorship

Removed MODULE_VERSION and fixed MODULE_AUTHOR.
Signed-off-by: default avatarSunil Goutham <sgoutham@marvell.com>
Reviewed-by: default avatarLeon Romanovsky <leonro@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b1bc8457
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
#define DRV_NAME "octeontx2-af" #define DRV_NAME "octeontx2-af"
#define DRV_STRING "Marvell OcteonTX2 RVU Admin Function Driver" #define DRV_STRING "Marvell OcteonTX2 RVU Admin Function Driver"
#define DRV_VERSION "1.0"
static int rvu_get_hwvf(struct rvu *rvu, int pcifunc); static int rvu_get_hwvf(struct rvu *rvu, int pcifunc);
...@@ -46,10 +45,9 @@ static const struct pci_device_id rvu_id_table[] = { ...@@ -46,10 +45,9 @@ static const struct pci_device_id rvu_id_table[] = {
{ 0, } /* end of table */ { 0, } /* end of table */
}; };
MODULE_AUTHOR("Marvell International Ltd."); MODULE_AUTHOR("Sunil Goutham <sgoutham@marvell.com>");
MODULE_DESCRIPTION(DRV_STRING); MODULE_DESCRIPTION(DRV_STRING);
MODULE_LICENSE("GPL v2"); MODULE_LICENSE("GPL v2");
MODULE_VERSION(DRV_VERSION);
MODULE_DEVICE_TABLE(pci, rvu_id_table); MODULE_DEVICE_TABLE(pci, rvu_id_table);
static char *mkex_profile; /* MKEX profile name */ static char *mkex_profile; /* MKEX profile name */
......
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
#define DRV_NAME "octeontx2-nicpf" #define DRV_NAME "octeontx2-nicpf"
#define DRV_STRING "Marvell OcteonTX2 NIC Physical Function Driver" #define DRV_STRING "Marvell OcteonTX2 NIC Physical Function Driver"
#define DRV_VERSION "1.0"
/* Supported devices */ /* Supported devices */
static const struct pci_device_id otx2_pf_id_table[] = { static const struct pci_device_id otx2_pf_id_table[] = {
...@@ -32,10 +31,9 @@ static const struct pci_device_id otx2_pf_id_table[] = { ...@@ -32,10 +31,9 @@ static const struct pci_device_id otx2_pf_id_table[] = {
{ 0, } /* end of table */ { 0, } /* end of table */
}; };
MODULE_AUTHOR("Marvell International Ltd."); MODULE_AUTHOR("Sunil Goutham <sgoutham@marvell.com>");
MODULE_DESCRIPTION(DRV_STRING); MODULE_DESCRIPTION(DRV_STRING);
MODULE_LICENSE("GPL v2"); MODULE_LICENSE("GPL v2");
MODULE_VERSION(DRV_VERSION);
MODULE_DEVICE_TABLE(pci, otx2_pf_id_table); MODULE_DEVICE_TABLE(pci, otx2_pf_id_table);
enum { enum {
......
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