Skip to content

Commit 1ad96bb

Browse files
committed
Merge tag 'gpio-v3.16-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio
Pull GPIO fix from Linus Walleij: "A first GPIO fix for the v3.16 series, this was serious since it blocks the OMAP boot. Sending you this vital fix before leaving for a short vacation so it does not sit collecting dust in my tree for no good reason. Apart from this, our v3.16 cycle looks like a good start" * tag 'gpio-v3.16-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio: gpio: of: Fix handling for deferred probe for -gpio suffix
2 parents c728762 + 06fc3b7 commit 1ad96bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpio/gpiolib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2614,7 +2614,7 @@ static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
26142614

26152615
desc = of_get_named_gpiod_flags(dev->of_node, prop_name, idx,
26162616
&of_flags);
2617-
if (!IS_ERR(desc))
2617+
if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
26182618
break;
26192619
}
26202620

0 commit comments

Comments
 (0)