diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2019-01-08 13:12:33 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-01-08 13:04:47 +0000 |
commit | 48f1b4efd67c922eff113f247533cbe175b1491e (patch) | |
tree | 8e93ff0fba2c563c108ead50503a15e82558a785 /drivers/regulator/lp8755.c | |
parent | 557ce9d755d5ffc735f03a9a2ce2f1b4a3b23bd6 (diff) | |
download | linux-48f1b4efd67c922eff113f247533cbe175b1491e.tar.bz2 |
regulator: Fix trivial language typos
Fix few trivial language typos in core and drivers.
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/lp8755.c')
-rw-r--r-- | drivers/regulator/lp8755.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/lp8755.c b/drivers/regulator/lp8755.c index 244822bb63cd..6d229ad4ef3e 100644 --- a/drivers/regulator/lp8755.c +++ b/drivers/regulator/lp8755.c @@ -386,7 +386,7 @@ static irqreturn_t lp8755_irq_handler(int irq, void *data) if (ret < 0) goto err_i2c; - /* send OCP event to all regualtor devices */ + /* send OCP event to all regulator devices */ if ((flag1 & 0x01) && (pchip->irqmask & 0x01)) for (icnt = 0; icnt < LP8755_BUCK_MAX; icnt++) if (pchip->rdev[icnt] != NULL) @@ -394,7 +394,7 @@ static irqreturn_t lp8755_irq_handler(int irq, void *data) LP8755_EVENT_OCP, NULL); - /* send OVP event to all regualtor devices */ + /* send OVP event to all regulator devices */ if ((flag1 & 0x02) && (pchip->irqmask & 0x02)) for (icnt = 0; icnt < LP8755_BUCK_MAX; icnt++) if (pchip->rdev[icnt] != NULL) |