From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Marchand Subject: [PATCH] net/mlx: align drivers to latest naming convention Date: Fri, 7 Oct 2016 15:04:13 +0200 Message-ID: <1475845453-25738-1-git-send-email-david.marchand@6wind.com> Cc: dev@dpdk.org, adrien.mazarguil@6wind.com To: thomas.monjalon@6wind.com Return-path: Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id 3CC4E292D for ; Fri, 7 Oct 2016 15:04:18 +0200 (CEST) Received: by mail-wm0-f44.google.com with SMTP id k125so31428610wma.1 for ; Fri, 07 Oct 2016 06:04:18 -0700 (PDT) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fixes: 2f45703c17ac ("drivers: make driver names consistent") Signed-off-by: David Marchand --- drivers/net/mlx4/mlx4.h | 2 +- drivers/net/mlx5/mlx5_defs.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/mlx4/mlx4.h b/drivers/net/mlx4/mlx4.h index d0c7bc2..4c7505e 100644 --- a/drivers/net/mlx4/mlx4.h +++ b/drivers/net/mlx4/mlx4.h @@ -96,7 +96,7 @@ enum { PCI_DEVICE_ID_MELLANOX_CONNECTX3PRO = 0x1007, }; -#define MLX4_DRIVER_NAME "librte_pmd_mlx4" +#define MLX4_DRIVER_NAME "net_mlx4" /* Bit-field manipulation. */ #define BITFIELD_DECLARE(bf, type, size) \ diff --git a/drivers/net/mlx5/mlx5_defs.h b/drivers/net/mlx5/mlx5_defs.h index cc2a6f3..b32816e 100644 --- a/drivers/net/mlx5/mlx5_defs.h +++ b/drivers/net/mlx5/mlx5_defs.h @@ -37,7 +37,7 @@ #include "mlx5_autoconf.h" /* Reported driver name. */ -#define MLX5_DRIVER_NAME "librte_pmd_mlx5" +#define MLX5_DRIVER_NAME "net_mlx5" /* Maximum number of simultaneous MAC addresses. */ #define MLX5_MAX_MAC_ADDRESSES 128 -- 2.7.4