From patchwork Tue Apr 5 17:17:29 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bjorn Helgaas X-Patchwork-Id: 8753651 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 29E28C0553 for ; Tue, 5 Apr 2016 17:19:40 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 38F992037E for ; Tue, 5 Apr 2016 17:19:39 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 5F47120351 for ; Tue, 5 Apr 2016 17:19:38 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1anUbz-0003dJ-9s; Tue, 05 Apr 2016 17:17:55 +0000 Received: from mail.kernel.org ([198.145.29.136]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1anUbw-0003Zf-F1 for linux-arm-kernel@lists.infradead.org; Tue, 05 Apr 2016 17:17:52 +0000 Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 860E42037E; Tue, 5 Apr 2016 17:17:31 +0000 (UTC) Received: from localhost (unknown [69.71.1.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 4C47520351; Tue, 5 Apr 2016 17:17:30 +0000 (UTC) Date: Tue, 5 Apr 2016 12:17:29 -0500 From: Bjorn Helgaas To: Colin King Subject: Re: [PATCH] PCI: xilinx-nwl: Fix spelling mistake "Initialization" Message-ID: <20160405171729.GB12135@localhost> References: <1459680976-32222-1-git-send-email-colin.king@canonical.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1459680976-32222-1-git-send-email-colin.king@canonical.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-Spam-Status: No, score=-5.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20160405_101752_535246_2AB41994 X-CRM114-Status: GOOD ( 15.24 ) X-Spam-Score: -5.2 (-----) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Bharat Kumar Gogada , linux-pci@vger.kernel.org, Michal Simek , linux-kernel@vger.kernel.org, Marc Zyngier , Ravi Kiran Gummaluri , linux-arm-kernel@lists.infradead.org, Bjorn Helgaas , =?iso-8859-1?Q?S=F6ren?= Brinkmann Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Virus-Scanned: ClamAV using ClamSMTP On Sun, Apr 03, 2016 at 11:56:16AM +0100, Colin King wrote: > From: Colin Ian King > > Minor fix, spelling mistake "Initalization" should be > "Initialization". > > Signed-off-by: Colin Ian King Applied to pci/misc for v4.7, thanks, Colin! I noticed the same error in drivers/pci/pci.c and fixed that as well: commit dcbb408ac5a2803ba44ca2fae8bf53eb5d4082f3 Author: Colin Ian King Date: Tue Apr 5 12:12:45 2016 -0500 PCI: Fix spelling errors Fix spelling of "initalization". [bhelgaas: also fix pci/pci.c] Signed-off-by: Colin Ian King Signed-off-by: Bjorn Helgaas diff --git a/drivers/pci/host/pcie-xilinx-nwl.c b/drivers/pci/host/pcie-xilinx-nwl.c index 5139e64..3479d30 100644 --- a/drivers/pci/host/pcie-xilinx-nwl.c +++ b/drivers/pci/host/pcie-xilinx-nwl.c @@ -819,7 +819,7 @@ static int nwl_pcie_probe(struct platform_device *pdev) err = nwl_pcie_bridge_init(pcie); if (err) { - dev_err(pcie->dev, "HW Initalization failed\n"); + dev_err(pcie->dev, "HW Initialization failed\n"); return err; } diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 25e0327..e3d6b33 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -2389,7 +2389,7 @@ out: return offset + ent_size; } -/* Enhanced Allocation Initalization */ +/* Enhanced Allocation Initialization */ void pci_ea_init(struct pci_dev *dev) { int ea;