From patchwork Tue Oct 11 21:43:36 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Chautru, Nicolas" X-Patchwork-Id: 117999 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A858CA0548; Tue, 11 Oct 2022 23:45:36 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A1B2242CAD; Tue, 11 Oct 2022 23:44:19 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id A3A2D42C7C for ; Tue, 11 Oct 2022 23:44:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1665524655; x=1697060655; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=70Im0W7kbuWzow+yN3elzY7wKTyfJfSA8kZHfZEwx4A=; b=GWkX/8BlrV7JOjwmUPnTy4AtdQ5m0CJY64A7IoMdrvSXSF3bofqWVm7a tJUqJ2ZSqrDaEcPr5xzfC9JcCHNv+CYZiEDuE94ZeWcUeYvjLcWeAvdtt ou1gJj1E+vA5XhUknQqQRNxETJ1fIbZ1NQx1t7wPtPjjTLwL8Te+kWCOj MQGe0myZZd9HCmwJts66t4ZeNsYQF2PpnmDIgdPnUGZ2lnitdipKKNB20 N28Oz+NQOC+sEFltrHqqaFW5C6iQvTCVnv+a/YCwL2qVwKvL9aPnl+AZR M5o0qygHeJ4kgtMSRsm0D2ncqp5gTjVxUvzmOhPnlKTyZyBX3MRZ4bKHx g==; X-IronPort-AV: E=McAfee;i="6500,9779,10497"; a="291954041" X-IronPort-AV: E=Sophos;i="5.95,177,1661842800"; d="scan'208";a="291954041" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Oct 2022 14:44:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10497"; a="659693084" X-IronPort-AV: E=Sophos;i="5.95,177,1661842800"; d="scan'208";a="659693084" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by orsmga001.jf.intel.com with ESMTP; 11 Oct 2022 14:44:13 -0700 From: Nicolas Chautru To: dev@dpdk.org, gakhil@marvell.com, maxime.coquelin@redhat.com Cc: trix@redhat.com, mdr@ashroe.eu, bruce.richardson@intel.com, hemant.agrawal@nxp.com, david.marchand@redhat.com, stephen@networkplumber.org, hernan.vargas@intel.com, Nic Chautru Subject: [PATCH v11 14/16] baseband/acc: simplify meson dependency Date: Tue, 11 Oct 2022 14:43:36 -0700 Message-Id: <20221011214338.15034-15-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20221011214338.15034-1-nicolas.chautru@intel.com> References: <20221011214338.15034-1-nicolas.chautru@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org From: Nic Chautru Removed some of libraries from the external dependency captured in meson build file which are not required. Signed-off-by: Nic Chautru Reviewed-by: Maxime Coquelin --- drivers/baseband/acc/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/baseband/acc/meson.build b/drivers/baseband/acc/meson.build index d74ace1481..77c393b533 100644 --- a/drivers/baseband/acc/meson.build +++ b/drivers/baseband/acc/meson.build @@ -1,7 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2020 Intel Corporation -deps += ['bbdev', 'bus_vdev', 'ring', 'pci', 'bus_pci'] +deps += ['bbdev', 'bus_pci'] sources = files('rte_acc100_pmd.c', 'rte_acc200_pmd.c')