From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5D115C6FA82 for ; Thu, 22 Sep 2022 20:36:36 +0000 (UTC) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 45A5742BBA; Thu, 22 Sep 2022 22:35:12 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 6DA08427FF for ; Thu, 22 Sep 2022 22:34:59 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1663878899; x=1695414899; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=3NKmVa6KtV671wsBIBGYHG51gnncVnleBlNupdJ4gyg=; b=mZsNY5Ve890oGbvf5Tbhgg1XfMtUGjYAJmxKK1KaeGLeEBPu1KGEAEyB 0MpLtPeTogkD4SDKW+rnnqsuP1RCiCUPMuQ2LIGhjlrG5XtrXWojI56cR UFELKrGpwyRdXG4U1bzokEHexkMdMk+ZbHKi5AAVcyuALUfCtcQMSfpAF eAvrccZ4Vqsw2mBpbPsaqkRgM/tHDcVm1LZZ1TZitO5kA6GCRzlElhUAb aItHLqn7Rv2IqkG+ic7js6mfPqUXAJXFgYhMXl+eyJZSHpX0iMORoLC73 NsMBKrihrYpQryM2uBLT2KABBQEL2ihwgU0vSYOj/oGFF1hqLniY7fS0V g==; X-IronPort-AV: E=McAfee;i="6500,9779,10478"; a="280149139" X-IronPort-AV: E=Sophos;i="5.93,337,1654585200"; d="scan'208";a="280149139" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Sep 2022 13:34:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,337,1654585200"; d="scan'208";a="709041469" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by FMSMGA003.fm.intel.com with ESMTP; 22 Sep 2022 13:34:57 -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 v5 14/14] baseband/acc: simplify meson dependency Date: Thu, 22 Sep 2022 13:34:21 -0700 Message-Id: <20220922203421.40434-15-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20220922203421.40434-1-nicolas.chautru@intel.com> References: <20220922203421.40434-1-nicolas.chautru@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 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') -- 2.37.1