From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernard Iremonger Subject: [RFC PATCH 13/18] null: remove type field from rte_driver structure Date: Fri, 4 Sep 2015 12:01:49 +0100 Message-ID: <1441364514-24905-14-git-send-email-bernard.iremonger@intel.com> References: <1441364514-24905-1-git-send-email-bernard.iremonger@intel.com> To: dev@dpdk.org Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 1FF7A8E7D for ; Fri, 4 Sep 2015 13:02:09 +0200 (CEST) In-Reply-To: <1441364514-24905-1-git-send-email-bernard.iremonger@intel.com> 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" Signed-off-by: Bernard Iremonger --- drivers/net/null/rte_eth_null.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/null/rte_eth_null.c b/drivers/net/null/rte_eth_null.c index e244595..5f9871c 100644 --- a/drivers/net/null/rte_eth_null.c +++ b/drivers/net/null/rte_eth_null.c @@ -577,8 +577,7 @@ rte_pmd_null_devuninit(const char *name) } static struct rte_driver pmd_null_drv = { - .name = "eth_null", - .type = PMD_VDEV, + .name = "eth_null", /* Virtual device */ .init = rte_pmd_null_devinit, .uninit = rte_pmd_null_devuninit, }; -- 1.9.1