From patchwork Fri Sep 16 01:35:06 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Chautru, Nicolas" X-Patchwork-Id: 116374 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 AD182A034C; Fri, 16 Sep 2022 03:36:48 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9983642BB4; Fri, 16 Sep 2022 03:35:38 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 767EB42B89 for ; Fri, 16 Sep 2022 03:35:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1663292135; x=1694828135; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=oyVOUQriKCEBryf6GpxDayiJImT9Odw/7THGz2/nfvw=; b=jTW2VAmMQ5dkVQTakoHIpDa4lG9UwoiuWsZEaeRRv39qT7Raend9drbE Cw9XIo7M6lHMhFPrTaLeVSOtUzTAadivCk7qyn766hXGKZmso7tbGUhv5 Cb+QBkU5yYFRXQgTz1gNKYOIbh0w8cwfRoOKyBX6ij2xMSSkHLaBnz4fO OlSmZ/95Ysq89g3neAeX0bzw+GrEv1oVK/q9CdSIPjaLt+e1UV6vT0igx DYpH3cFQsnOZq/uvLIaXNp+U7G6xk1DSIURxDHjo66Lg1+8fyixVFnMHG AE2QM3O/kZnm1aMB+kUKAPpCr7FQKyJsG4MHkpvktZx7ZOw7inZ/chZMB A==; X-IronPort-AV: E=McAfee;i="6500,9779,10471"; a="281913744" X-IronPort-AV: E=Sophos;i="5.93,319,1654585200"; d="scan'208";a="281913744" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Sep 2022 18:35:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,319,1654585200"; d="scan'208";a="743165058" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by orsmga004.jf.intel.com with ESMTP; 15 Sep 2022 18:35:32 -0700 From: Nic 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 v3 13/13] baseband/acc: simplify meson dependency Date: Thu, 15 Sep 2022 18:35:06 -0700 Message-Id: <1663292106-45320-14-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1663292106-45320-1-git-send-email-nicolas.chautru@intel.com> References: <1663292106-45320-1-git-send-email-nicolas.chautru@intel.com> 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 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 7ae162a..bece3a6 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')