From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0430DA0546; Thu, 16 Jul 2020 09:26:38 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 979FF1BE98; Thu, 16 Jul 2020 09:26:37 +0200 (CEST) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 3E86B1BE95 for ; Thu, 16 Jul 2020 09:26:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1594884395; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=CXtnzwaPqWCbZZPlIpKuUCf5c7o0hUuUMUb/7xd4hik=; b=gbCTRckiIetFVSmzGhvC5tHEUx0ZMhOFTSyhXbmO4YdJNTCn88Lm051kauC/hkB/bfaHwW OmxiAslKbIfDymsqQEQr6fTgoIjTQbW+FmfwNEGHv/Y3u5q7OkGctsaySN7a/hXIoPkW7y XF/Kq1LmKhtyBEBigTxx9iMZ810sLUo= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-470-55sm9mg6NlSUZf1MspF38A-1; Thu, 16 Jul 2020 03:26:28 -0400 X-MC-Unique: 55sm9mg6NlSUZf1MspF38A-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 26A801800D42; Thu, 16 Jul 2020 07:26:27 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.195.188]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5EA7B2B6CF; Thu, 16 Jul 2020 07:26:24 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: ferruh.yigit@intel.com, Ajit Khaparde , Somnath Kotur , Venkat Duvvuru , Kalesh AP Date: Thu, 16 Jul 2020 09:26:18 +0200 Message-Id: <20200716072618.2907-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH] net/bnxt: remove unneeded experimental build flag X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" -DALLOW_EXPERIMENTAL_API is always set for in-tree compilation. See https://git.dpdk.org/dpdk/commit/?id=acec04c4b2f5 Fixes: 322bd6e70272 ("net/bnxt: add port representor infrastructure") Signed-off-by: David Marchand --- drivers/net/bnxt/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/bnxt/Makefile b/drivers/net/bnxt/Makefile index c54fd108d1..2c4cdd1c40 100644 --- a/drivers/net/bnxt/Makefile +++ b/drivers/net/bnxt/Makefile @@ -14,7 +14,6 @@ LIB = librte_pmd_bnxt.a EXPORT_MAP := rte_pmd_bnxt_version.map CFLAGS += -O3 -CFLAGS += -DALLOW_EXPERIMENTAL_API CFLAGS += $(WERROR_FLAGS) LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs -- 2.23.0