From patchwork Thu Sep 29 21:11:28 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Chautru, Nicolas" X-Patchwork-Id: 117162 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 1076CA034C; Thu, 29 Sep 2022 23:13:34 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 914BF42BAB; Thu, 29 Sep 2022 23:12:03 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 3E5E74282E for ; Thu, 29 Sep 2022 23:11:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1664485910; x=1696021910; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=8W1eXnHVQMJmOWrAJcFfsiJBXJpLaXlwDcMDBUOmExQ=; b=hWMMxihyoeuc4A6F15cEdcp/BSxC1k3X1R++RvfawOvu4N7I/qG8CLRH jjm24HCxNFKjRvVKRrmptlN1TGf+pV0ICu8PS5Pv2/UMJrVQp6PThSk3q pJd3CgWPV/DkdiQBWbLZ0QBzPAaWGjQLgqwGpDwTaXMyWjbOybzC8gNxx zTklYozlLbRStA8eoB5z/dARNcAgeUin7iQWZOw37A04h+sliHu6H42m8 n7BQmz/thCGI1kxmf6gTxkETqTEHYt9xXZiP8UwrhJv5oFquXkaSLdG5g 9upj1xN8uZNz4xEZbHYw20PhEGXGH9qKaKeIbSdTfsVowxmbOm5zfgBJo A==; X-IronPort-AV: E=McAfee;i="6500,9779,10485"; a="281736489" X-IronPort-AV: E=Sophos;i="5.93,356,1654585200"; d="scan'208";a="281736489" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Sep 2022 14:11:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10485"; a="764882747" X-IronPort-AV: E=Sophos;i="5.93,356,1654585200"; d="scan'208";a="764882747" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by fmsmga001.fm.intel.com with ESMTP; 29 Sep 2022 14:11:48 -0700 From: Nicolas Chautru To: dev@dpdk.org, thomas@monjalon.net Cc: maxime.coquelin@redhat.com, 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 v7 14/14] baseband/acc: simplify meson dependency Date: Thu, 29 Sep 2022 14:11:28 -0700 Message-Id: <20220929211128.36381-15-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20220929211128.36381-1-nicolas.chautru@intel.com> References: <20220929211128.36381-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 Removing some of libraries from the external dependency captured in meson build file. 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')