From patchwork Fri Oct 7 19:03:29 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Chautru, Nicolas" X-Patchwork-Id: 117629 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 9E273A0540; Fri, 7 Oct 2022 21:05:33 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 52D6542BBE; Fri, 7 Oct 2022 21:04:02 +0200 (CEST) Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 00C3B42B6E for ; Fri, 7 Oct 2022 21:03:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1665169432; x=1696705432; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=HR0BZiJvkpM1QVm5tYZ4RxfCY5QGjaLr1Yrwve95Oqo=; b=fzGnhgCJKKYMZ21bpOBOeFXXc4/kJiD3ZUF2V6OEUXHzi+qWBuDnVJCG Fdi6iVebEA9+QTF7fXxXkWIPxSqr6kRemeqlsOyTA+YoJC1Yx2ON+xtKd GjJEnc7JH4nN6xCdYAjyv9ZhHJK+aba1hwn7gpBX9qlPf0PxcWQQ7xjOl 8ZWvcmG+KX3b699fUXH4+MUvzKgOJWHSDwgnNHX+bzAeV+YRNjKRDFGY4 OpZCBeoyQ5LcH7Wrfe0R0lrDE8pLCpraFSNw5osVsCmnXQtonx9JrA+gf vb09K2wj3XhS5/Q/ZBYvZlD13aJBPEJnMPzhUi4PxBfouRK7HyD1zwoIf w==; X-IronPort-AV: E=McAfee;i="6500,9779,10493"; a="365758329" X-IronPort-AV: E=Sophos;i="5.95,167,1661842800"; d="scan'208";a="365758329" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Oct 2022 12:03:51 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10493"; a="870394241" X-IronPort-AV: E=Sophos;i="5.95,167,1661842800"; d="scan'208";a="870394241" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by fmsmga006.fm.intel.com with ESMTP; 07 Oct 2022 12:03:50 -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 v8 14/14] baseband/acc: simplify meson dependency Date: Fri, 7 Oct 2022 12:03:29 -0700 Message-Id: <20221007190329.25381-15-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20221007190329.25381-1-nicolas.chautru@intel.com> References: <20221007190329.25381-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 --- 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 7ae162aab8..bece3a6e48 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')