linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] regulator: axp20x: Remove unneeded NULL test against rdev
@ 2019-03-19  3:36 Axel Lin
  2019-03-19  3:36 ` [PATCH 2/2] regulator: axp20x: Use rdev_get_id at appropriate places Axel Lin
  2019-03-19  3:38 ` [PATCH 1/2] regulator: axp20x: Remove unneeded NULL test against rdev Chen-Yu Tsai
  0 siblings, 2 replies; 4+ messages in thread
From: Axel Lin @ 2019-03-19  3:36 UTC (permalink / raw)
  To: Mark Brown; +Cc: Chen-Yu Tsai, Liam Girdwood, linux-kernel, Axel Lin

rdev won't be NULL in .enable callback.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 drivers/regulator/axp20x-regulator.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/regulator/axp20x-regulator.c b/drivers/regulator/axp20x-regulator.c
index fba8f58ab769..8a366f66208e 100644
--- a/drivers/regulator/axp20x-regulator.c
+++ b/drivers/regulator/axp20x-regulator.c
@@ -437,9 +437,6 @@ static int axp20x_regulator_enable_regmap(struct regulator_dev *rdev)
 	struct axp20x_dev *axp20x = rdev_get_drvdata(rdev);
 	const struct regulator_desc *desc;
 
-	if (!rdev)
-		return -EINVAL;
-
 	desc = rdev->desc;
 
 	switch (axp20x->variant) {
-- 
2.17.1


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

* [PATCH 2/2] regulator: axp20x: Use rdev_get_id at appropriate places
  2019-03-19  3:36 [PATCH 1/2] regulator: axp20x: Remove unneeded NULL test against rdev Axel Lin
@ 2019-03-19  3:36 ` Axel Lin
  2019-03-19  3:39   ` Chen-Yu Tsai
  2019-03-19  3:38 ` [PATCH 1/2] regulator: axp20x: Remove unneeded NULL test against rdev Chen-Yu Tsai
  1 sibling, 1 reply; 4+ messages in thread
From: Axel Lin @ 2019-03-19  3:36 UTC (permalink / raw)
  To: Mark Brown; +Cc: Chen-Yu Tsai, Liam Girdwood, linux-kernel, Axel Lin

Use rdev_get_id() to simplify the code a bit.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 drivers/regulator/axp20x-regulator.c | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/drivers/regulator/axp20x-regulator.c b/drivers/regulator/axp20x-regulator.c
index 8a366f66208e..07e10c8b0a22 100644
--- a/drivers/regulator/axp20x-regulator.c
+++ b/drivers/regulator/axp20x-regulator.c
@@ -367,16 +367,14 @@ static const int axp209_dcdc2_ldo3_slew_rates[] = {
 static int axp20x_set_ramp_delay(struct regulator_dev *rdev, int ramp)
 {
 	struct axp20x_dev *axp20x = rdev_get_drvdata(rdev);
-	const struct regulator_desc *desc;
+	int id = rdev_get_id(rdev);
 	u8 reg, mask, enable, cfg = 0xff;
 	const int *slew_rates;
 	int rate_count = 0;
 
-	desc = rdev->desc;
-
 	switch (axp20x->variant) {
 	case AXP209_ID:
-		if (desc->id == AXP20X_DCDC2) {
+		if (id == AXP20X_DCDC2) {
 			slew_rates = axp209_dcdc2_ldo3_slew_rates;
 			rate_count = ARRAY_SIZE(axp209_dcdc2_ldo3_slew_rates);
 			reg = AXP20X_DCDC2_LDO3_V_RAMP;
@@ -388,7 +386,7 @@ static int axp20x_set_ramp_delay(struct regulator_dev *rdev, int ramp)
 			break;
 		}
 
-		if (desc->id == AXP20X_LDO3) {
+		if (id == AXP20X_LDO3) {
 			slew_rates = axp209_dcdc2_ldo3_slew_rates;
 			rate_count = ARRAY_SIZE(axp209_dcdc2_ldo3_slew_rates);
 			reg = AXP20X_DCDC2_LDO3_V_RAMP;
@@ -435,13 +433,11 @@ static int axp20x_set_ramp_delay(struct regulator_dev *rdev, int ramp)
 static int axp20x_regulator_enable_regmap(struct regulator_dev *rdev)
 {
 	struct axp20x_dev *axp20x = rdev_get_drvdata(rdev);
-	const struct regulator_desc *desc;
-
-	desc = rdev->desc;
+	int id = rdev_get_id(rdev);
 
 	switch (axp20x->variant) {
 	case AXP209_ID:
-		if ((desc->id == AXP20X_LDO3) &&
+		if ((id == AXP20X_LDO3) &&
 		    rdev->constraints && rdev->constraints->soft_start) {
 			int v_out;
 			int ret;
-- 
2.17.1


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

* Re: [PATCH 1/2] regulator: axp20x: Remove unneeded NULL test against rdev
  2019-03-19  3:36 [PATCH 1/2] regulator: axp20x: Remove unneeded NULL test against rdev Axel Lin
  2019-03-19  3:36 ` [PATCH 2/2] regulator: axp20x: Use rdev_get_id at appropriate places Axel Lin
@ 2019-03-19  3:38 ` Chen-Yu Tsai
  1 sibling, 0 replies; 4+ messages in thread
From: Chen-Yu Tsai @ 2019-03-19  3:38 UTC (permalink / raw)
  To: Axel Lin, Mark Brown; +Cc: Liam Girdwood, linux-kernel

On Tue, Mar 19, 2019 at 11:36 AM Axel Lin <axel.lin@ingics.com> wrote:
>
> rdev won't be NULL in .enable callback.
>
> Signed-off-by: Axel Lin <axel.lin@ingics.com>

Acked-by: Chen-Yu Tsai <wens@csie.org>

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

* Re: [PATCH 2/2] regulator: axp20x: Use rdev_get_id at appropriate places
  2019-03-19  3:36 ` [PATCH 2/2] regulator: axp20x: Use rdev_get_id at appropriate places Axel Lin
@ 2019-03-19  3:39   ` Chen-Yu Tsai
  0 siblings, 0 replies; 4+ messages in thread
From: Chen-Yu Tsai @ 2019-03-19  3:39 UTC (permalink / raw)
  To: Axel Lin, Mark Brown; +Cc: Liam Girdwood, linux-kernel

On Tue, Mar 19, 2019 at 11:36 AM Axel Lin <axel.lin@ingics.com> wrote:
>
> Use rdev_get_id() to simplify the code a bit.
>
> Signed-off-by: Axel Lin <axel.lin@ingics.com>

Acked-by: Chen-Yu Tsai <wens@csie.org>

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

end of thread, other threads:[~2019-03-19  3:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-19  3:36 [PATCH 1/2] regulator: axp20x: Remove unneeded NULL test against rdev Axel Lin
2019-03-19  3:36 ` [PATCH 2/2] regulator: axp20x: Use rdev_get_id at appropriate places Axel Lin
2019-03-19  3:39   ` Chen-Yu Tsai
2019-03-19  3:38 ` [PATCH 1/2] regulator: axp20x: Remove unneeded NULL test against rdev Chen-Yu Tsai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).