From patchwork Fri Oct 7 21:38:51 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Chautru, Nicolas" X-Patchwork-Id: 117660 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 34590A0543; Fri, 7 Oct 2022 23:40:51 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 69BB342BC4; Fri, 7 Oct 2022 23:39:24 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 2984F42B83 for ; Fri, 7 Oct 2022 23:39:16 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1665178756; x=1696714756; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=HR0BZiJvkpM1QVm5tYZ4RxfCY5QGjaLr1Yrwve95Oqo=; b=gj5HcGkTyeUmNOkGwcG7rqfDb/UjGNpPTXHip+k7VgMJQpZzHaUQpe2v DeR+7EFW0xuXlChdoYu8DxhV0YIBRRyaXSrbbY5zuyPC6hgSFWlrUoyUw GRMurhvuawzsW5WdQf3w1o2gLbrlBS1TQfFGZcMC2dUwsLBtdb5RCzvvP E9RkUXafXgEVHL3wd5+QQiR/4wBHhr49LKUXTtd3THa3JrmF+c9WfMiPr P4pvQJ4kZeL8Lj9RSnJsRjNcOhiwOg2kjOHCgbKN/O4u71zjzstvkjn5/ ddfT4IdCkzp1v9PKx86vjin+IqGwULND15dDm+CLTPJeCphwXQROG7PmY w==; X-IronPort-AV: E=McAfee;i="6500,9779,10493"; a="291118520" X-IronPort-AV: E=Sophos;i="5.95,167,1661842800"; d="scan'208";a="291118520" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Oct 2022 14:39:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10493"; a="620388500" X-IronPort-AV: E=Sophos;i="5.95,167,1661842800"; d="scan'208";a="620388500" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by orsmga007.jf.intel.com with ESMTP; 07 Oct 2022 14:39:15 -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 v9 14/14] baseband/acc: simplify meson dependency Date: Fri, 7 Oct 2022 14:38:51 -0700 Message-Id: <20221007213851.31524-15-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20221007213851.31524-1-nicolas.chautru@intel.com> References: <20221007213851.31524-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 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')