aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/sh
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2012-09-14 14:25:48 -0400
committerPaul Mundt <lethal@linux-sh.org>2012-09-18 03:54:46 -0400
commit077664a2644ff6fa0fb1a0c15be96fed359d09f4 (patch)
treeb09b296f19553512c550418da3396a7003b384d5 /drivers/sh
parentd4b7c5db429fbfd3c79120b27ccf66d583606b57 (diff)
sh: pfc: Release spinlock in sh_pfc_gpio_request_enable() error path
The sh_pfc_gpio_request_enable() function acquires a spinlock but fails to release it before returning if the requested mux type is not supported. Fix this. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/sh')
-rw-r--r--drivers/sh/pfc/pinctrl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/sh/pfc/pinctrl.c b/drivers/sh/pfc/pinctrl.c
index 2804eaae804..a3ac39b7919 100644
--- a/drivers/sh/pfc/pinctrl.c
+++ b/drivers/sh/pfc/pinctrl.c
@@ -211,7 +211,8 @@ static int sh_pfc_gpio_request_enable(struct pinctrl_dev *pctldev,
211 break; 211 break;
212 default: 212 default:
213 pr_err("Unsupported mux type (%d), bailing...\n", pinmux_type); 213 pr_err("Unsupported mux type (%d), bailing...\n", pinmux_type);
214 return -ENOTSUPP; 214 ret = -ENOTSUPP;
215 goto err;
215 } 216 }
216 217
217 ret = 0; 218 ret = 0;