From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jaehoon Chung Subject: Re: [PATCH] mmc: dw_mmc: fix spelling mistake in dev_dbg message Date: Thu, 17 Nov 2016 10:24:20 +0900 Message-ID: <360eeabd-3deb-ad52-cd41-d78e0c8b7973@samsung.com> References: <20161116185501.10976-1-colin.king@canonical.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailout3.samsung.com ([203.254.224.33]:46190 "EHLO mailout3.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932263AbcKQBYq (ORCPT ); Wed, 16 Nov 2016 20:24:46 -0500 In-reply-to: <20161116185501.10976-1-colin.king@canonical.com> Sender: linux-mmc-owner@vger.kernel.org List-Id: linux-mmc@vger.kernel.org To: Colin King , Ulf Hansson , linux-mmc@vger.kernel.org Cc: linux-kernel@vger.kernel.org Hi Colin, On 11/17/2016 03:55 AM, Colin King wrote: > From: Colin Ian King > > Trivial fix to spelling mistake "desciptor" to "descriptor" in > dev_dbg message. Applied on my dwmmc repository. Thanks! Best Regards, Jaehoon Chung > > Signed-off-by: Colin Ian King > --- > drivers/mmc/host/dw_mmc.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c > index a16c537..9341b18 100644 > --- a/drivers/mmc/host/dw_mmc.c > +++ b/drivers/mmc/host/dw_mmc.c > @@ -612,7 +612,7 @@ static inline int dw_mci_prepare_desc64(struct dw_mci *host, > return 0; > err_own_bit: > /* restore the descriptor chain as it's polluted */ > - dev_dbg(host->dev, "desciptor is still owned by IDMAC.\n"); > + dev_dbg(host->dev, "descriptor is still owned by IDMAC.\n"); > memset(host->sg_cpu, 0, DESC_RING_BUF_SZ); > dw_mci_idmac_init(host); > return -EINVAL; > @@ -688,7 +688,7 @@ static inline int dw_mci_prepare_desc32(struct dw_mci *host, > return 0; > err_own_bit: > /* restore the descriptor chain as it's polluted */ > - dev_dbg(host->dev, "desciptor is still owned by IDMAC.\n"); > + dev_dbg(host->dev, "descriptor is still owned by IDMAC.\n"); > memset(host->sg_cpu, 0, DESC_RING_BUF_SZ); > dw_mci_idmac_init(host); > return -EINVAL; >