From patchwork Thu Sep 22 00:27:40 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Chautru, Nicolas" X-Patchwork-Id: 116610 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 34FB4A0540; Thu, 22 Sep 2022 02:30:03 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B259042BBC; Thu, 22 Sep 2022 02:28:28 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id D735342B73 for ; Thu, 22 Sep 2022 02:28:17 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1663806498; x=1695342498; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=oyVOUQriKCEBryf6GpxDayiJImT9Odw/7THGz2/nfvw=; b=Pi7cHsRqGUCrKfFVwYp3CvZRnBwWGiihK4D8bp0I+7hP0topXtdi0JfT nSELJ3R4THpj4o27fXy/DimfP94kWsfurueRQU3b0WgiTzXUAL3OzKYwG /5t/iaRu4X51UpyeThIZnm8Se7s26Ex9ojVH0ojWFcWEkqfoA3p6Z09bR se7BBOUWTzuS0/9PyWM1OPsT9lVzG859FqI01ELLIlN8TWsUEDCkfz1qy ZjVMyXoxAzi4zoG+7ACJAUvrYd+08urmxP2nf+qa9cIw3G4Obo6Zwk7f2 NIk4C555wmNuym8N9F8caJ0a4GgePNxcQkNa2VlS1eplDGb+h/LxDPOmu A==; X-IronPort-AV: E=McAfee;i="6500,9779,10477"; a="279883419" X-IronPort-AV: E=Sophos;i="5.93,334,1654585200"; d="scan'208";a="279883419" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Sep 2022 17:28:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,334,1654585200"; d="scan'208";a="615010996" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by orsmga007.jf.intel.com with ESMTP; 21 Sep 2022 17:28:16 -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 v4 14/14] baseband/acc: simplify meson dependency Date: Wed, 21 Sep 2022 17:27:40 -0700 Message-Id: <1663806460-45162-15-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1663806460-45162-1-git-send-email-nicolas.chautru@intel.com> References: <1663806460-45162-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')