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

Signed-off-by: Laxman Dewangan <[email protected]>

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

Reply via email to