[PATCH 1/1] pinctrl: core: Fix build error due to devm_pinctrl_dev_match()

From: Laxman Dewangan
Date: Wed Apr 20 2016 - 13:29:38 EST


The closing bracket missing from final patch which causes the
build break. Correcting the function.

Signed-off-by: Laxman Dewangan <ldewangan@xxxxxxxxxx>

---
This may be happend by mistake when applyign the pathces for git hub from
test branch to devm_pinctrl branch.
This is happening on devel branch of pinctrl subsystem.
---
drivers/pinctrl/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pinctrl/core.c b/drivers/pinctrl/core.c
index 21df52e..98d2a1b 100644
--- a/drivers/pinctrl/core.c
+++ b/drivers/pinctrl/core.c
@@ -1883,7 +1883,7 @@ static int devm_pinctrl_dev_match(struct device *dev, void *res, void *data)
{
struct pctldev **r = res;

- if (WARN_ON(!r || !*r)
+ if (WARN_ON(!r || !*r))
return 0;

return *r == data;
--
2.1.4