Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1953701AbdDYTEo (ORCPT ); Tue, 25 Apr 2017 15:04:44 -0400 Received: from mail.kernel.org ([198.145.29.136]:54616 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1947328AbdDYTEe (ORCPT ); Tue, 25 Apr 2017 15:04:34 -0400 Date: Tue, 25 Apr 2017 14:04:29 -0500 From: Bjorn Helgaas To: Colin King Cc: Richard Zhu , Lucas Stach , Bjorn Helgaas , linux-pci@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] PCI: imx6: fix spelling mistake: "contol" -> "control" Message-ID: <20170425190429.GA29024@bhelgaas-glaptop.roam.corp.google.com> References: <20170421070230.16582-1-colin.king@canonical.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170421070230.16582-1-colin.king@canonical.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1552 Lines: 44 On Fri, Apr 21, 2017 at 08:02:30AM +0100, Colin King wrote: > From: Colin Ian King > > trivial fix to spelling mistake in dev_err message > > Signed-off-by: Colin Ian King Applied with Richard's ack to pci/host-imx6 for v4.12, thanks. FWIW, there are about 25 other occurrences of "contol" in other parts of the tree. > --- > drivers/pci/dwc/pci-imx6.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/pci/dwc/pci-imx6.c b/drivers/pci/dwc/pci-imx6.c > index 102edcf1e261..129717ae5022 100644 > --- a/drivers/pci/dwc/pci-imx6.c > +++ b/drivers/pci/dwc/pci-imx6.c > @@ -726,13 +726,13 @@ static int imx6_pcie_probe(struct platform_device *pdev) > imx6_pcie->pciephy_reset = devm_reset_control_get(dev, > "pciephy"); > if (IS_ERR(imx6_pcie->pciephy_reset)) { > - dev_err(dev, "Failed to get PCIEPHY reset contol\n"); > + dev_err(dev, "Failed to get PCIEPHY reset control\n"); > return PTR_ERR(imx6_pcie->pciephy_reset); > } > > imx6_pcie->apps_reset = devm_reset_control_get(dev, "apps"); > if (IS_ERR(imx6_pcie->apps_reset)) { > - dev_err(dev, "Failed to get PCIE APPS reset contol\n"); > + dev_err(dev, "Failed to get PCIE APPS reset control\n"); > return PTR_ERR(imx6_pcie->apps_reset); > } > break; > -- > 2.11.0 > > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel