linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC] pinctrl: sh-pfc: propagate errors on group config
@ 2016-06-20  6:40 Wolfram Sang
  2016-06-21 13:11 ` Geert Uytterhoeven
  2017-07-17  8:51 ` Geert Uytterhoeven
  0 siblings, 2 replies; 7+ messages in thread
From: Wolfram Sang @ 2016-06-20  6:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Wolfram Sang, linux-renesas-soc, Geert Uytterhoeven

From: Wolfram Sang <wsa+renesas@sang-engineering.com>

On group configuration, bail out if setting one of the individual pins
fails. We don't need to roll-back, the pinctrl core will do this for us.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---

Tested on a Lager and Salvator-X without problems. Needs probably more testing
on various HW to avoid regressions?

 drivers/pinctrl/sh-pfc/pinctrl.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/drivers/pinctrl/sh-pfc/pinctrl.c b/drivers/pinctrl/sh-pfc/pinctrl.c
index d4e65bc7dacd67..c52ca5873974f3 100644
--- a/drivers/pinctrl/sh-pfc/pinctrl.c
+++ b/drivers/pinctrl/sh-pfc/pinctrl.c
@@ -739,13 +739,16 @@ static int sh_pfc_pinconf_group_set(struct pinctrl_dev *pctldev, unsigned group,
 	struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
 	const unsigned int *pins;
 	unsigned int num_pins;
-	unsigned int i;
+	unsigned int i, ret;
 
 	pins = pmx->pfc->info->groups[group].pins;
 	num_pins = pmx->pfc->info->groups[group].nr_pins;
 
-	for (i = 0; i < num_pins; ++i)
-		sh_pfc_pinconf_set(pctldev, pins[i], configs, num_configs);
+	for (i = 0; i < num_pins; ++i) {
+		ret = sh_pfc_pinconf_set(pctldev, pins[i], configs, num_configs);
+		if (ret)
+			return ret;
+	}
 
 	return 0;
 }
-- 
2.8.1

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

end of thread, other threads:[~2017-07-17  8:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-20  6:40 [RFC] pinctrl: sh-pfc: propagate errors on group config Wolfram Sang
2016-06-21 13:11 ` Geert Uytterhoeven
2016-06-21 20:37   ` Wolfram Sang
2017-05-24 11:47   ` Geert Uytterhoeven
2017-05-24 12:21     ` Wolfram Sang
2017-05-24 12:27       ` Geert Uytterhoeven
2017-07-17  8:51 ` Geert Uytterhoeven

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).