diff options
author | Bart Van Assche <bart.vanassche@sandisk.com> | 2015-05-18 13:25:27 +0200 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2015-05-18 19:35:56 +0200 |
commit | 33ab3e5ba2f7d647812dbca573ee3ba5baf58284 (patch) | |
tree | f7c055b4c89c7d8c8e3344fbf892b07c0e87f079 /drivers/infiniband | |
parent | IB/srp: Remove superfluous casts (diff) | |
download | linux-33ab3e5ba2f7d647812dbca573ee3ba5baf58284.tar.xz linux-33ab3e5ba2f7d647812dbca573ee3ba5baf58284.zip |
IB/srp: Rearrange module description
Move the module version and release date into separate fields.
This makes the modinfo output easier to read.
Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Reviewed-by: Sagi Grimberg <sagig@mellanox.com>
Cc: Sebastian Parschauer <sebastian.riemer@profitbricks.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/ulp/srp/ib_srp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c index 880255dbaca4..10dd8f266ec1 100644 --- a/drivers/infiniband/ulp/srp/ib_srp.c +++ b/drivers/infiniband/ulp/srp/ib_srp.c @@ -59,9 +59,10 @@ #define DRV_RELDATE "July 1, 2013" MODULE_AUTHOR("Roland Dreier"); -MODULE_DESCRIPTION("InfiniBand SCSI RDMA Protocol initiator " - "v" DRV_VERSION " (" DRV_RELDATE ")"); +MODULE_DESCRIPTION("InfiniBand SCSI RDMA Protocol initiator"); MODULE_LICENSE("Dual BSD/GPL"); +MODULE_VERSION(DRV_VERSION); +MODULE_INFO(release_date, DRV_RELDATE); static unsigned int srp_sg_tablesize; static unsigned int cmd_sg_entries; |