diff options
| author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-03-20 11:27:18 +0100 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-03-20 11:27:18 +0100 | 
| commit | 4958134df54c2c84e9c22ea042761d439164d26e (patch) | |
| tree | 503177afab11f7d25b12a84ce25b481d305c51ba /drivers/gpio/gpiolib-of.c | |
| parent | c4f528795d1add8b63652673f7262729f679c6c1 (diff) | |
| parent | c698ca5278934c0ae32297a8725ced2e27585d7f (diff) | |
Merge 4.16-rc6 into tty-next
We want the serial/tty fixes in here as well.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/gpio/gpiolib-of.c')
| -rw-r--r-- | drivers/gpio/gpiolib-of.c | 15 | 
1 files changed, 14 insertions, 1 deletions
diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c index 564bb7a31da4..84e5a9df2344 100644 --- a/drivers/gpio/gpiolib-of.c +++ b/drivers/gpio/gpiolib-of.c @@ -241,6 +241,19 @@ struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,  		desc = of_get_named_gpiod_flags(dev->of_node, prop_name, idx,  						&of_flags); +		/* +		 * -EPROBE_DEFER in our case means that we found a +		 * valid GPIO property, but no controller has been +		 * registered so far. +		 * +		 * This means we don't need to look any further for +		 * alternate name conventions, and we should really +		 * preserve the return code for our user to be able to +		 * retry probing later. +		 */ +		if (IS_ERR(desc) && PTR_ERR(desc) == -EPROBE_DEFER) +			return desc; +  		if (!IS_ERR(desc) || (PTR_ERR(desc) != -ENOENT))  			break;  	} @@ -250,7 +263,7 @@ struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,  		desc = of_find_spi_gpio(dev, con_id, &of_flags);  	/* Special handling for regulator GPIOs if used */ -	if (IS_ERR(desc)) +	if (IS_ERR(desc) && PTR_ERR(desc) != -EPROBE_DEFER)  		desc = of_find_regulator_gpio(dev, con_id, &of_flags);  	if (IS_ERR(desc))  | 
