Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1523753 > unrolled thread
| Started by | Colin King <colin.king@canonical.com> |
|---|---|
| First post | 2016-11-16 20:00 +0100 |
| Last post | 2016-11-17 02:30 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] mmc: dw_mmc: fix spelling mistake in dev_dbg message Colin King <colin.king@canonical.com> - 2016-11-16 20:00 +0100
Re: [PATCH] mmc: dw_mmc: fix spelling mistake in dev_dbg message Jaehoon Chung <jh80.chung@samsung.com> - 2016-11-17 02:30 +0100
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Date | 2016-11-16 20:00 +0100 |
| Subject | [PATCH] mmc: dw_mmc: fix spelling mistake in dev_dbg message |
| Message-ID | <sEdB8-6F2-33@gated-at.bofh.it> |
From: Colin Ian King <colin.king@canonical.com> Trivial fix to spelling mistake "desciptor" to "descriptor" in dev_dbg message. Signed-off-by: Colin Ian King <colin.king@canonical.com> --- 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; -- 2.10.2
[toc] | [next] | [standalone]
| From | Jaehoon Chung <jh80.chung@samsung.com> |
|---|---|
| Date | 2016-11-17 02:30 +0100 |
| Message-ID | <sEjGy-2gG-15@gated-at.bofh.it> |
| In reply to | #1523753 |
Hi Colin, On 11/17/2016 03:55 AM, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > 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 <colin.king@canonical.com> > --- > 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; >
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web