diff mbox series

[next] power: supply: fix spelling mistake "unprecise" -> "imprecise"

Message ID 20200902101656.57676-1-colin.king@canonical.com
State Accepted
Commit 304bff2fb8e9ad0047c11ae0ef2ca6c3d74cd52b
Headers show
Series [next] power: supply: fix spelling mistake "unprecise" -> "imprecise" | expand

Commit Message

Colin King Sept. 2, 2020, 10:16 a.m. UTC
From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in a dev_info message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/power/supply/rn5t618_power.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Sebastian Reichel Oct. 3, 2020, 9:51 p.m. UTC | #1
Hi,

On Wed, Sep 02, 2020 at 11:16:56AM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in a dev_info message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---

Thanks, queued.

-- Sebastian

>  drivers/power/supply/rn5t618_power.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/power/supply/rn5t618_power.c b/drivers/power/supply/rn5t618_power.c
> index 424d2817bee5..dee520f0fdf5 100644
> --- a/drivers/power/supply/rn5t618_power.c
> +++ b/drivers/power/supply/rn5t618_power.c
> @@ -487,7 +487,7 @@ static int rn5t618_power_probe(struct platform_device *pdev)
>  		 * gauge will get decalibrated.
>  		 */
>  		dev_info(&pdev->dev, "Fuel gauge not enabled, enabling now\n");
> -		dev_info(&pdev->dev, "Expect unprecise results\n");
> +		dev_info(&pdev->dev, "Expect imprecise results\n");
>  		regmap_update_bits(info->rn5t618->regmap, RN5T618_CONTROL,
>  				   FG_ENABLE, FG_ENABLE);
>  	}
> -- 
> 2.27.0
>
Joe Perches Oct. 3, 2020, 10:15 p.m. UTC | #2
On Sat, 2020-10-03 at 23:51 +0200, Sebastian Reichel wrote:
> On Wed, Sep 02, 2020 at 11:16:56AM +0100, Colin King wrote:
> > From: Colin Ian King <colin.king@canonical.com>
> > There is a spelling mistake in a dev_info message. Fix it.
> > 
> > Signed-off-by: Colin Ian King <colin.king@canonical.com>
> > ---
> 
> Thanks, queued.
[]
> > diff --git a/drivers/power/supply/rn5t618_power.c b/drivers/power/supply/rn5t618_power.c
[]
> > @@ -487,7 +487,7 @@ static int rn5t618_power_probe(struct platform_device *pdev)
> >  		 * gauge will get decalibrated.
> >  		 */
> >  		dev_info(&pdev->dev, "Fuel gauge not enabled, enabling now\n");
> > -		dev_info(&pdev->dev, "Expect unprecise results\n");
> > +		dev_info(&pdev->dev, "Expect imprecise results\n");

Might as well be a single line too

		dev_info(&pdev->dev, "Fuel gauge not enabled, enabling now - expect imprecise results\n");
diff mbox series

Patch

diff --git a/drivers/power/supply/rn5t618_power.c b/drivers/power/supply/rn5t618_power.c
index 424d2817bee5..dee520f0fdf5 100644
--- a/drivers/power/supply/rn5t618_power.c
+++ b/drivers/power/supply/rn5t618_power.c
@@ -487,7 +487,7 @@  static int rn5t618_power_probe(struct platform_device *pdev)
 		 * gauge will get decalibrated.
 		 */
 		dev_info(&pdev->dev, "Fuel gauge not enabled, enabling now\n");
-		dev_info(&pdev->dev, "Expect unprecise results\n");
+		dev_info(&pdev->dev, "Expect imprecise results\n");
 		regmap_update_bits(info->rn5t618->regmap, RN5T618_CONTROL,
 				   FG_ENABLE, FG_ENABLE);
 	}