All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][RESEND] regulator: lp8755: fix spelling mistake "acceess" -> "access"
@ 2017-05-10  8:30 Colin King
  2017-05-14  9:25 ` Mark Brown
  0 siblings, 1 reply; 3+ messages in thread
From: Colin King @ 2017-05-10  8:30 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown; +Cc: linux-kernel

From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in dev_err messages.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/regulator/lp8755.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/regulator/lp8755.c b/drivers/regulator/lp8755.c
index db34e1da75ef..244822bb63cd 100644
--- a/drivers/regulator/lp8755.c
+++ b/drivers/regulator/lp8755.c
@@ -99,7 +99,7 @@ static int lp8755_buck_enable_time(struct regulator_dev *rdev)
 
 	ret = lp8755_read(pchip, 0x12 + id, &regval);
 	if (ret < 0) {
-		dev_err(pchip->dev, "i2c acceess error %s\n", __func__);
+		dev_err(pchip->dev, "i2c access error %s\n", __func__);
 		return ret;
 	}
 	return (regval & 0xff) * 100;
@@ -144,7 +144,7 @@ static int lp8755_buck_set_mode(struct regulator_dev *rdev, unsigned int mode)
 		goto err_i2c;
 	return ret;
 err_i2c:
-	dev_err(pchip->dev, "i2c acceess error %s\n", __func__);
+	dev_err(pchip->dev, "i2c access error %s\n", __func__);
 	return ret;
 }
 
@@ -175,7 +175,7 @@ static unsigned int lp8755_buck_get_mode(struct regulator_dev *rdev)
 	return REGULATOR_MODE_NORMAL;
 
 err_i2c:
-	dev_err(pchip->dev, "i2c acceess error %s\n", __func__);
+	dev_err(pchip->dev, "i2c access error %s\n", __func__);
 	return 0;
 }
 
@@ -223,7 +223,7 @@ static int lp8755_buck_set_ramp(struct regulator_dev *rdev, int ramp)
 		goto err_i2c;
 	return ret;
 err_i2c:
-	dev_err(pchip->dev, "i2c acceess error %s\n", __func__);
+	dev_err(pchip->dev, "i2c access error %s\n", __func__);
 	return ret;
 }
 
@@ -295,7 +295,7 @@ static int lp8755_init_data(struct lp8755_chip *pchip)
 	return ret;
 
 out_i2c_error:
-	dev_err(pchip->dev, "i2c acceess error %s\n", __func__);
+	dev_err(pchip->dev, "i2c access error %s\n", __func__);
 	return ret;
 }
 
@@ -404,7 +404,7 @@ static irqreturn_t lp8755_irq_handler(int irq, void *data)
 	return IRQ_HANDLED;
 
 err_i2c:
-	dev_err(pchip->dev, "i2c acceess error %s\n", __func__);
+	dev_err(pchip->dev, "i2c access error %s\n", __func__);
 	return IRQ_NONE;
 }
 
@@ -420,7 +420,7 @@ static int lp8755_int_config(struct lp8755_chip *pchip)
 
 	ret = lp8755_read(pchip, 0x0F, &regval);
 	if (ret < 0) {
-		dev_err(pchip->dev, "i2c acceess error %s\n", __func__);
+		dev_err(pchip->dev, "i2c access error %s\n", __func__);
 		return ret;
 	}
 
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH][RESEND] regulator: lp8755: fix spelling mistake "acceess" -> "access"
  2017-05-10  8:30 [PATCH][RESEND] regulator: lp8755: fix spelling mistake "acceess" -> "access" Colin King
@ 2017-05-14  9:25 ` Mark Brown
  2017-05-15  8:40   ` Colin Ian King
  0 siblings, 1 reply; 3+ messages in thread
From: Mark Brown @ 2017-05-14  9:25 UTC (permalink / raw)
  To: Colin King; +Cc: Liam Girdwood, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 243 bytes --]

On Wed, May 10, 2017 at 09:30:20AM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> Trivial fix to spelling mistake in dev_err messages.

If this is a resend why do I not seem to have a copy of this patch?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH][RESEND] regulator: lp8755: fix spelling mistake "acceess" -> "access"
  2017-05-14  9:25 ` Mark Brown
@ 2017-05-15  8:40   ` Colin Ian King
  0 siblings, 0 replies; 3+ messages in thread
From: Colin Ian King @ 2017-05-15  8:40 UTC (permalink / raw)
  To: Mark Brown; +Cc: Liam Girdwood, linux-kernel


[-- Attachment #1.1: Type: text/plain, Size: 331 bytes --]

On 14/05/17 10:25, Mark Brown wrote:
> On Wed, May 10, 2017 at 09:30:20AM +0100, Colin King wrote:
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> Trivial fix to spelling mistake in dev_err messages.
> 
> If this is a resend why do I not seem to have a copy of this patch?
> 
Probably because I goofed up. Doh.


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 837 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-05-15  8:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-10  8:30 [PATCH][RESEND] regulator: lp8755: fix spelling mistake "acceess" -> "access" Colin King
2017-05-14  9:25 ` Mark Brown
2017-05-15  8:40   ` Colin Ian King

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.