mlx(4): remove date from log message

Further to r310425, go one step further and just remove the date.

Reviewed by:	hselasky
Differential Revision:	https://reviews.freebsd.org/D8888
This commit is contained in:
Ed Maste 2016-12-23 20:14:05 +00:00
parent 9e9262139c
commit f0473bfa82
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=310488
3 changed files with 2 additions and 4 deletions

View File

@ -52,7 +52,6 @@
#define DRV_NAME "mlx4_core"
#define PFX DRV_NAME ": "
#define DRV_VERSION "2.1.6"
#define DRV_RELDATE "Sep 30 2016"
#define DRV_STACK_NAME "Linux-MLNX_OFED"
#define DRV_STACK_VERSION "2.1"

View File

@ -174,7 +174,7 @@ MODULE_PARM_DESC(enable_64b_cqe_eqe,
static char mlx4_version[] __devinitdata =
DRV_NAME ": Mellanox ConnectX VPI driver v"
DRV_VERSION " (" DRV_RELDATE ")\n";
DRV_VERSION "\n";
static int log_num_mac = 7;
module_param_named(log_num_mac, log_num_mac, int, 0444);

View File

@ -59,7 +59,6 @@
#define DRV_NAME MLX4_IB_DRV_NAME
#define DRV_VERSION "1.0"
#define DRV_RELDATE "Sep 30 2016"
#define MLX4_IB_DRIVER_PROC_DIR_NAME "driver/mlx4_ib"
#define MLX4_IB_MRS_PROC_DIR_NAME "mrs"
@ -102,7 +101,7 @@ static spinlock_t dev_num_str_lock;
static const char mlx4_ib_version[] =
DRV_NAME ": Mellanox ConnectX InfiniBand driver v"
DRV_VERSION " (" DRV_RELDATE ")\n";
DRV_VERSION "\n";
struct update_gid_work {
struct work_struct work;