From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5E4CEA00C3; Wed, 12 Oct 2022 20:02:12 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4BFC142BF5; Wed, 12 Oct 2022 20:00:23 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 24DB642B91 for ; Wed, 12 Oct 2022 20:00:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1665597621; x=1697133621; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=70Im0W7kbuWzow+yN3elzY7wKTyfJfSA8kZHfZEwx4A=; b=fPKQJag0zh3pZ3BGjbzNJX7++sGX1D0WT5Z9Pi73ztQusCAoIqqp2hRz flLN1PVPT2zwVpohyUbN//1EGV1ic9brv87h8qLBC9Zqbyqna31PrSq5h hLB/V0trWvCy82OU3lRO0cHuRNapgqUrwCEMsTNH9NQoO3WvEYniBl09w KxW6f+g7IQSfhsEZiaix7a6ZT2z//AnVjpgJQlNL3hiFrgpRsSTMwhMMa Up+Oslpmg/nrTuCopDWmB5s2dYIFDtNGpwZG5BeqOZjGqkdT6FKr8zHvd qLrloia+QVubcGzvJFwlkfGhCsrp/LXsf1mzABpdQtBvw9hxWSYwCuKxn Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10498"; a="292193200" X-IronPort-AV: E=Sophos;i="5.95,179,1661842800"; d="scan'208";a="292193200" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Oct 2022 11:00:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10498"; a="657867408" X-IronPort-AV: E=Sophos;i="5.95,179,1661842800"; d="scan'208";a="657867408" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by orsmga008.jf.intel.com with ESMTP; 12 Oct 2022 11:00:11 -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 v12 14/16] baseband/acc: simplify meson dependency Date: Wed, 12 Oct 2022 10:59:28 -0700 Message-Id: <20221012175930.7560-15-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20221012175930.7560-1-nicolas.chautru@intel.com> References: <20221012175930.7560-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 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') -- 2.37.1