Message ID | 1466675526-3176-1-git-send-email-colin.king@canonical.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 23/06/16 12:52, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > trivial fix to spelling mistake in dev_err message > > Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: Adrian Hunter <adrian.hunter@intel.com> > --- > drivers/mmc/host/sdhci-msm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/mmc/host/sdhci-msm.c b/drivers/mmc/host/sdhci-msm.c > index 0653fe7..343e4bd 100644 > --- a/drivers/mmc/host/sdhci-msm.c > +++ b/drivers/mmc/host/sdhci-msm.c > @@ -473,7 +473,7 @@ static int sdhci_msm_probe(struct platform_device *pdev) > msm_host->pclk = devm_clk_get(&pdev->dev, "iface"); > if (IS_ERR(msm_host->pclk)) { > ret = PTR_ERR(msm_host->pclk); > - dev_err(&pdev->dev, "Perpheral clk setup failed (%d)\n", ret); > + dev_err(&pdev->dev, "Peripheral clk setup failed (%d)\n", ret); > goto bus_clk_disable; > } > > -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Thu, 2016-06-23 at 10:52 +0100, Colin King wrote:
> trivial fix to spelling mistake in dev_err message
Hello Colin.
You are submitting a lot of these recently.
Are you using a tool to find these?
If you are, maybe publish it to the janitorial
and newbies list so others can do the work.
--
To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
On 23/06/16 12:39, Joe Perches wrote: > On Thu, 2016-06-23 at 10:52 +0100, Colin King wrote: >> trivial fix to spelling mistake in dev_err message > > Hello Colin. > > You are submitting a lot of these recently. > > Are you using a tool to find these? basically spell on some fancy kernel printk scraping, it's a bit of a lash up - I ended up with > 30K of possible candidates and when I'm waiting for builds or tests to complete I work my way through the list, so it's not very automated ;-) > > If you are, maybe publish it to the janitorial > and newbies list so others can do the work. > -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 23 June 2016 at 11:52, Colin King <colin.king@canonical.com> wrote: > From: Colin Ian King <colin.king@canonical.com> > > trivial fix to spelling mistake in dev_err message > > Signed-off-by: Colin Ian King <colin.king@canonical.com> Thanks, applied for next! Kind regards Uffe > --- > drivers/mmc/host/sdhci-msm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/mmc/host/sdhci-msm.c b/drivers/mmc/host/sdhci-msm.c > index 0653fe7..343e4bd 100644 > --- a/drivers/mmc/host/sdhci-msm.c > +++ b/drivers/mmc/host/sdhci-msm.c > @@ -473,7 +473,7 @@ static int sdhci_msm_probe(struct platform_device *pdev) > msm_host->pclk = devm_clk_get(&pdev->dev, "iface"); > if (IS_ERR(msm_host->pclk)) { > ret = PTR_ERR(msm_host->pclk); > - dev_err(&pdev->dev, "Perpheral clk setup failed (%d)\n", ret); > + dev_err(&pdev->dev, "Peripheral clk setup failed (%d)\n", ret); > goto bus_clk_disable; > } > > -- > 2.8.1 > -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" 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/mmc/host/sdhci-msm.c b/drivers/mmc/host/sdhci-msm.c index 0653fe7..343e4bd 100644 --- a/drivers/mmc/host/sdhci-msm.c +++ b/drivers/mmc/host/sdhci-msm.c @@ -473,7 +473,7 @@ static int sdhci_msm_probe(struct platform_device *pdev) msm_host->pclk = devm_clk_get(&pdev->dev, "iface"); if (IS_ERR(msm_host->pclk)) { ret = PTR_ERR(msm_host->pclk); - dev_err(&pdev->dev, "Perpheral clk setup failed (%d)\n", ret); + dev_err(&pdev->dev, "Peripheral clk setup failed (%d)\n", ret); goto bus_clk_disable; }