From patchwork Wed Jan 26 05:49:34 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Srikanth Yalavarthi X-Patchwork-Id: 106544 X-Patchwork-Delegate: thomas@monjalon.net 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 10974A00C3; Wed, 26 Jan 2022 06:49:45 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CDE6D426D6; Wed, 26 Jan 2022 06:49:44 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 0799E4069D; Wed, 26 Jan 2022 06:49:42 +0100 (CET) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.1.2/8.16.1.2) with ESMTP id 20Q5QIHo008698; Tue, 25 Jan 2022 21:49:42 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=pfpt0220; bh=v2HsKLGFX8q5uT9Lr5pXpftyjx+XH2xzSTv9WvedyGQ=; b=fzdehtLr3stT9T5NpVWA/4VLSMh0OzdZb4x/QBedC7gCeSEra7iktz1kz9wigN05pM70 xTL46UqyL8OepD1DStq5yxUZWu1gFa+Hyg3/uUezvpyVb0l4WBgFLk7oS9GPoQzIalPe ODCTYDCIZ5oa0senEfNWaqyzOQyrhM3GXWJzywSYoVObXAsqqIcfVKqwa7/MUYyNzhOW b5BsA5/2pQiXJ56WQoD00EDlobKRdg5zO4LJwU2jwOQf/2GgePdrwkxaTVB6ahtZIN59 0wqUMp9+Qf/IYpC0FjC10MRYumZWRURqyIsNQRWbApBN3CaHIHksiqCPnFmYj7+a1ceS 9A== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3dt8mumumb-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 25 Jan 2022 21:49:42 -0800 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Tue, 25 Jan 2022 21:49:40 -0800 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Tue, 25 Jan 2022 21:49:40 -0800 Received: from ml-host-33.caveonetworks.com (unknown [10.110.143.233]) by maili.marvell.com (Postfix) with ESMTP id 3247B3F7070; Tue, 25 Jan 2022 21:49:40 -0800 (PST) From: Srikanth Yalavarthi To: Radha Mohan Chintakuntla , Veerasenareddy Burru CC: , , , , Srikanth Yalavarthi Subject: [PATCH v3 1/1] dma/cnxk: fix installing internal cnxk DMA headers Date: Tue, 25 Jan 2022 21:49:34 -0800 Message-ID: <20220126054934.22629-1-syalavarthi@marvell.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20220126052424.16585-1-syalavarthi@marvell.com> References: <20220126052424.16585-1-syalavarthi@marvell.com> MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: VPKu3IgCBCvnffLR4Tksjk2AwuawVsI7 X-Proofpoint-GUID: VPKu3IgCBCvnffLR4Tksjk2AwuawVsI7 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.816,Hydra:6.0.425,FMLib:17.11.62.513 definitions=2022-01-26_01,2022-01-25_02,2021-12-02_01 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 DMA module internal header files are currently being installed to the prefix directory. This patch updates DMA meson config file to exclude internal headers during install stage. Fixes: 53f6d7328b (dma/cnxk: create and initialize device on PCI probing) Cc: stable@dpdk.org Signed-off-by: Srikanth Yalavarthi Acked-by: Radha Mohan Chintakuntla --- drivers/dma/cnxk/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/dma/cnxk/meson.build b/drivers/dma/cnxk/meson.build index 633e92a20d..d4be4ee860 100644 --- a/drivers/dma/cnxk/meson.build +++ b/drivers/dma/cnxk/meson.build @@ -3,4 +3,3 @@ deps += ['bus_pci', 'common_cnxk', 'dmadev'] sources = files('cnxk_dmadev.c') -headers = files('cnxk_dmadev.h')