Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1225542 > unrolled thread

[PATCH 1/1] regulator: tps65218: Fix missing zero typo

Started by"Andrew F. Davis" <afd@ti.com>
First post2015-09-15 22:40 +0200
Last post2015-09-16 16:00 +0200
Articles 3 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/1] regulator: tps65218: Fix missing zero typo "Andrew F. Davis" <afd@ti.com> - 2015-09-15 22:40 +0200
    Re: [PATCH 1/1] regulator: tps65218: Fix missing zero typo Dan Murphy <dmurphy@ti.com> - 2015-09-16 15:30 +0200
    Re: [PATCH 1/1] regulator: tps65218: Fix missing zero typo Nishanth Menon <nm@ti.com> - 2015-09-16 16:00 +0200

#1225542 — [PATCH 1/1] regulator: tps65218: Fix missing zero typo

From"Andrew F. Davis" <afd@ti.com>
Date2015-09-15 22:40 +0200
Subject[PATCH 1/1] regulator: tps65218: Fix missing zero typo
Message-ID<q95bb-7Wo-17@gated-at.bofh.it>
Add missing zero to value. This will be needed when range checking
is implemented.

Signed-off-by: Andrew F. Davis <afd@ti.com>
---
 drivers/regulator/tps65218-regulator.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/regulator/tps65218-regulator.c b/drivers/regulator/tps65218-regulator.c
index 7f97223..a02c1b9 100644
--- a/drivers/regulator/tps65218-regulator.c
+++ b/drivers/regulator/tps65218-regulator.c
@@ -73,7 +73,7 @@ static const struct regulator_linear_range dcdc4_ranges[] = {
 };
 
 static struct tps_info tps65218_pmic_regs[] = {
-	TPS65218_INFO(DCDC1, "DCDC1", 850000, 167500),
+	TPS65218_INFO(DCDC1, "DCDC1", 850000, 1675000),
 	TPS65218_INFO(DCDC2, "DCDC2", 850000, 1675000),
 	TPS65218_INFO(DCDC3, "DCDC3", 900000, 3400000),
 	TPS65218_INFO(DCDC4, "DCDC4", 1175000, 3400000),
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1226079

FromDan Murphy <dmurphy@ti.com>
Date2015-09-16 15:30 +0200
Message-ID<q9kWD-5Hr-45@gated-at.bofh.it>
In reply to#1225542
On 09/15/2015 03:34 PM, Andrew F. Davis wrote:
> Add missing zero to value. This will be needed when range checking
> is implemented.
>
> Signed-off-by: Andrew F. Davis <afd@ti.com>
> ---
>  drivers/regulator/tps65218-regulator.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/regulator/tps65218-regulator.c b/drivers/regulator/tps65218-regulator.c
> index 7f97223..a02c1b9 100644
> --- a/drivers/regulator/tps65218-regulator.c
> +++ b/drivers/regulator/tps65218-regulator.c
> @@ -73,7 +73,7 @@ static const struct regulator_linear_range dcdc4_ranges[] = {
>  };
>  
>  static struct tps_info tps65218_pmic_regs[] = {
> -	TPS65218_INFO(DCDC1, "DCDC1", 850000, 167500),
> +	TPS65218_INFO(DCDC1, "DCDC1", 850000, 1675000),
>  	TPS65218_INFO(DCDC2, "DCDC2", 850000, 1675000),
>  	TPS65218_INFO(DCDC3, "DCDC3", 900000, 3400000),
>  	TPS65218_INFO(DCDC4, "DCDC4", 1175000, 3400000),

Acked-by: Dan Murphy <dmurphy@ti.com>

-- 
------------------
Dan Murphy

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1226105

FromNishanth Menon <nm@ti.com>
Date2015-09-16 16:00 +0200
Message-ID<q9lpF-6fG-49@gated-at.bofh.it>
In reply to#1225542
On 09/15/2015 03:34 PM, Andrew F. Davis wrote:
> Add missing zero to value. This will be needed when range checking
> is implemented.
> 
> Signed-off-by: Andrew F. Davis <afd@ti.com>

Care about Fixes tag?

> ---
>  drivers/regulator/tps65218-regulator.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/regulator/tps65218-regulator.c b/drivers/regulator/tps65218-regulator.c
> index 7f97223..a02c1b9 100644
> --- a/drivers/regulator/tps65218-regulator.c
> +++ b/drivers/regulator/tps65218-regulator.c
> @@ -73,7 +73,7 @@ static const struct regulator_linear_range dcdc4_ranges[] = {
>  };
>  
>  static struct tps_info tps65218_pmic_regs[] = {
> -	TPS65218_INFO(DCDC1, "DCDC1", 850000, 167500),
> +	TPS65218_INFO(DCDC1, "DCDC1", 850000, 1675000),
>  	TPS65218_INFO(DCDC2, "DCDC2", 850000, 1675000),
>  	TPS65218_INFO(DCDC3, "DCDC3", 900000, 3400000),
>  	TPS65218_INFO(DCDC4, "DCDC4", 1175000, 3400000),
> 


-- 
Regards,
Nishanth Menon
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web