From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 34AF0A04C9 for ; Mon, 14 Sep 2020 10:18:23 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 16E191BE95; Mon, 14 Sep 2020 10:18:23 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.120]) by dpdk.org (Postfix) with ESMTP id F2D871BE95 for ; Mon, 14 Sep 2020 10:18:21 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1600071501; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=kArIWgo//OD5CeYHDmEhGI/pkU9OBaSGT5NXQLamPoc=; b=ZFn9bcjTVJpCywa4gCP4WhGt2Ut0edGHDFQpFtTQJyqxVYg/WDO667Xyul3T3ebU8kaBDz T1AokR7PNcMSFGshR8D4JbKKyDCkBFwtQzKzSqMIWoIXammvRoncyvs+UKljPxVIOwUIPN DVtmwlqcdVpSGYCj7CNO1+8z752WMUo= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-444-916a3RL2MJuLoiwN0roBtA-1; Mon, 14 Sep 2020 04:18:17 -0400 X-MC-Unique: 916a3RL2MJuLoiwN0roBtA-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 123ED56B2A; Mon, 14 Sep 2020 08:18:16 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.82]) by smtp.corp.redhat.com (Postfix) with ESMTP id DA0257512C; Mon, 14 Sep 2020 08:18:13 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Stephen Hemminger , Gaetan Rivet , Thomas Monjalon Date: Mon, 14 Sep 2020 10:17:27 +0200 Message-Id: <20200914081727.12215-6-david.marchand@redhat.com> In-Reply-To: <20200914081727.12215-1-david.marchand@redhat.com> References: <20200914081727.12215-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0.0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [PATCH 5/5] bus/pci: remove duplicate declaration X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" This declaration is the same as the one a few lines before. Fixes: 6844d146ff39 ("eal: add bus pointer in device structure") Cc: stable@dpdk.org Signed-off-by: David Marchand --- drivers/bus/pci/private.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/bus/pci/private.h b/drivers/bus/pci/private.h index 530123767b..9aa7e67c73 100644 --- a/drivers/bus/pci/private.h +++ b/drivers/bus/pci/private.h @@ -15,8 +15,6 @@ extern struct rte_pci_bus rte_pci_bus; struct rte_pci_driver; struct rte_pci_device; -extern struct rte_pci_bus rte_pci_bus; - /** * Scan the content of the PCI bus, and the devices in the devices * list -- 2.23.0