From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-14.8 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 187B6C433E2 for ; Thu, 16 Jul 2020 07:26:39 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id C00C8206C1 for ; Thu, 16 Jul 2020 07:26:38 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="gbCTRcki" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org C00C8206C1 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org 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