From patchwork Tue Oct 11 21:15: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: 117982 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 8E97CA0548; Tue, 11 Oct 2022 23:17:41 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8CBA242C4F; Tue, 11 Oct 2022 23:16:18 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 5D3B842BD8 for ; Tue, 11 Oct 2022 23:16:10 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1665522970; x=1697058970; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=70Im0W7kbuWzow+yN3elzY7wKTyfJfSA8kZHfZEwx4A=; b=FKv6TQnRGORedpXBLl6dFXsKqbgf5wxsRRfnQLwm3YKP+aTHMVEpSe/O HlLmaeLKIAA2INb1zZWisOb3q8+9oFlfWwe6R/YAbTpN21fwJ1wmK32RL hCStUtpDZ9F4Wz4dl68L2VOzOIjVpQieCC3XL4BxYk4RohBWd3TMdF5o5 sF4fQRyghp6EWddJ5m69fIuUjXxozBn1jWDVV6Pk2AHL1D2U812ZF62js 2hlWU1vSqjBFNzOGYbZA409O3pqL0qh1714hgqYVYyb8mU/JTbCAv2LL8 3lWvxANqNZ5+gYlpLki7huR5gZimS7f6vB+frkzI6v2/3U2mOVm8G792N Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10497"; a="331116323" X-IronPort-AV: E=Sophos;i="5.95,177,1661842800"; d="scan'208";a="331116323" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Oct 2022 14:16:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10497"; a="715670520" X-IronPort-AV: E=Sophos;i="5.95,177,1661842800"; d="scan'208";a="715670520" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by FMSMGA003.fm.intel.com with ESMTP; 11 Oct 2022 14:16:08 -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 v10 14/16] baseband/acc: simplify meson dependency Date: Tue, 11 Oct 2022 14:15:36 -0700 Message-Id: <20221011211538.14106-15-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20221011211538.14106-1-nicolas.chautru@intel.com> References: <20221011211538.14106-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')