From patchwork Thu Oct 2 09:19:46 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eli Cohen X-Patchwork-Id: 395887 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id A27A3140188 for ; Thu, 2 Oct 2014 19:20:17 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751493AbaJBJUG (ORCPT ); Thu, 2 Oct 2014 05:20:06 -0400 Received: from mailp.voltaire.com ([193.47.165.129]:54710 "EHLO mellanox.co.il" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1751066AbaJBJT6 (ORCPT ); Thu, 2 Oct 2014 05:19:58 -0400 Received: from Internal Mail-Server by MTLPINE1 (envelope-from eli@mellanox.com) with ESMTPS (AES256-SHA encrypted); 2 Oct 2014 11:19:52 +0200 Received: from svn.lab.mtl.com (mtls50.mtl.labs.mlnx [10.7.0.50]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id s929Jp2r003682; Thu, 2 Oct 2014 12:19:51 +0300 Received: from mtls50.mtl.labs.mlnx (localhost [127.0.0.1]) by svn.lab.mtl.com (8.14.2/8.14.2/Debian-2build1) with ESMTP id s929Jpfk010165; Thu, 2 Oct 2014 12:19:51 +0300 Received: (from eli@localhost) by mtls50.mtl.labs.mlnx (8.14.2/8.14.2/Submit) id s929JpVZ010164; Thu, 2 Oct 2014 12:19:51 +0300 From: Eli Cohen To: davem@davemloft.net Cc: netdev@vger.kernel.org, ogerlitz@mellanox.com, yevgenyp@mellanox.com, Eli Cohen Subject: [PATCH V2 net-next 5/5] net/mlx5_core: Add ConnectX-4 to list of supported devices Date: Thu, 2 Oct 2014 12:19:46 +0300 Message-Id: <1412241586-10108-6-git-send-email-eli@mellanox.com> X-Mailer: git-send-email 1.8.5 In-Reply-To: <1412241586-10108-1-git-send-email-eli@mellanox.com> References: <1412241586-10108-1-git-send-email-eli@mellanox.com> Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Add the upcoming ConnectX-4 device to the list of supported devices by then mlx5 driver. Signed-off-by: Eli Cohen --- drivers/net/ethernet/mellanox/mlx5/core/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ethernet/mellanox/mlx5/core/main.c b/drivers/net/ethernet/mellanox/mlx5/core/main.c index b9e3259e415f..3d8e8e489b2d 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/main.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/main.c @@ -897,6 +897,7 @@ static void remove_one(struct pci_dev *pdev) static const struct pci_device_id mlx5_core_pci_table[] = { { PCI_VDEVICE(MELLANOX, 4113) }, /* MT4113 Connect-IB */ + { PCI_VDEVICE(MELLANOX, 4115) }, /* ConnectX-4 */ { 0, } };