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: 606581 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3qfbC32WsHz9t5w for ; Wed, 6 Apr 2016 03:17:35 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758785AbcDERRd (ORCPT ); Tue, 5 Apr 2016 13:17:33 -0400 Received: from mail.kernel.org ([198.145.29.136]:36242 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758776AbcDERRd (ORCPT ); Tue, 5 Apr 2016 13:17:33 -0400 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 Cc: Bjorn Helgaas , Michal Simek , =?iso-8859-1?Q?S=F6ren?= Brinkmann , Bharat Kumar Gogada , Ravi Kiran Gummaluri , Rob Herring , Marc Zyngier , linux-pci@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org 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=-1.9 required=5.0 tests=BAYES_00, UNPARSEABLE_RELAY autolearn=ham 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 Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org 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 --- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html 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;