From patchwork Tue Mar 30 07:36:14 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Green Wan X-Patchwork-Id: 1459917 X-Patchwork-Delegate: uboot@andestech.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.denx.de (client-ip=2a01:238:438b:c500:173d:9f52:ddab:ee01; helo=phobos.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Received: from phobos.denx.de (phobos.denx.de [IPv6:2a01:238:438b:c500:173d:9f52:ddab:ee01]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4F8hBG3M7Bz9sVm for ; Tue, 30 Mar 2021 18:37:58 +1100 (AEDT) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id B1A3882944; Tue, 30 Mar 2021 09:37:44 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=sifive.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 83C0882927; Tue, 30 Mar 2021 09:37:40 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on phobos.denx.de X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=BAYES_00,RDNS_NONE, SPF_HELO_NONE,UNPARSEABLE_RELAY autolearn=no autolearn_force=no version=3.4.2 Received: from transporter.internal.sifive.com (unknown [64.62.193.209]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 919E4828BF for ; Tue, 30 Mar 2021 09:37:37 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=sifive.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=green.wan@sifive.com Received: from gamma15.internal.sifive.com (gamma15.internal.sifive.com [10.14.21.64]) by transporter.internal.sifive.com (Postfix) with ESMTPS id 6A5B3201FA; Tue, 30 Mar 2021 00:37:36 -0700 (PDT) Received: from localhost (gamma15.internal.sifive.com [local]) by gamma15.internal.sifive.com (OpenSMTPD) with ESMTPA id 0b50daa4; Tue, 30 Mar 2021 07:37:33 +0000 (UTC) From: Green Wan To: Cc: bmeng.cn@gmail.com, narmstrong@baylibre.com, Green Wan , Rick Chen , Paul Walmsley , Pragnesh Patel , u-boot@lists.denx.de (open list) Subject: [RFC PATCH 3/3] drivers: pci: rename pcie_sifive to pcie_dw_pcie Date: Tue, 30 Mar 2021 00:36:14 -0700 Message-Id: <20210330073615.38787-4-green.wan@sifive.com> X-Mailer: git-send-email 2.31.0 In-Reply-To: <20210330073615.38787-1-green.wan@sifive.com> References: <20210330073615.38787-1-green.wan@sifive.com> MIME-Version: 1.0 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.102.4 at phobos.denx.de X-Virus-Status: Clean Rename pcie_sifive.c driver to pcie_dw_pcie.c. Signed-off-by: Green Wan --- drivers/pci/Makefile | 2 +- drivers/pci/{pcie_sifive.c => pcie_dw_sifive.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/pci/{pcie_sifive.c => pcie_dw_sifive.c} (100%) diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile index 0fde9d7bb8..a657c5f45e 100644 --- a/drivers/pci/Makefile +++ b/drivers/pci/Makefile @@ -52,4 +52,4 @@ obj-$(CONFIG_PCIE_ROCKCHIP) += pcie_rockchip.o obj-$(CONFIG_PCIE_DW_ROCKCHIP) += pcie_dw_rockchip.o obj-$(CONFIG_PCI_BRCMSTB) += pcie_brcmstb.o obj-$(CONFIG_PCI_OCTEONTX) += pci_octeontx.o -obj-$(CONFIG_PCIE_SIFIVE_FU740) += pcie_sifive.o +obj-$(CONFIG_PCIE_SIFIVE_FU740) += pcie_dw_sifive.o diff --git a/drivers/pci/pcie_sifive.c b/drivers/pci/pcie_dw_sifive.c similarity index 100% rename from drivers/pci/pcie_sifive.c rename to drivers/pci/pcie_dw_sifive.c