forked from mirrors/linux
		
	gpio: use new gpio_set_config() helper in more places
As suggested by Linus Walleij, let's use the new gpio_set_config() helper in gpiod_set_debounce() and gpiod_set_transitory(). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
		
							parent
							
								
									7147978985
								
							
						
					
					
						commit
						6581eaf0e8
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -2725,7 +2725,7 @@ int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
 | 
			
		|||
	}
 | 
			
		||||
 | 
			
		||||
	config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
 | 
			
		||||
	return chip->set_config(chip, gpio_chip_hwgpio(desc), config);
 | 
			
		||||
	return gpio_set_config(chip, gpio_chip_hwgpio(desc), config);
 | 
			
		||||
}
 | 
			
		||||
EXPORT_SYMBOL_GPL(gpiod_set_debounce);
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -2762,7 +2762,7 @@ int gpiod_set_transitory(struct gpio_desc *desc, bool transitory)
 | 
			
		|||
	packed = pinconf_to_config_packed(PIN_CONFIG_PERSIST_STATE,
 | 
			
		||||
					  !transitory);
 | 
			
		||||
	gpio = gpio_chip_hwgpio(desc);
 | 
			
		||||
	rc = chip->set_config(chip, gpio, packed);
 | 
			
		||||
	rc = gpio_set_config(chip, gpio, packed);
 | 
			
		||||
	if (rc == -ENOTSUPP) {
 | 
			
		||||
		dev_dbg(&desc->gdev->dev, "Persistence not supported for GPIO %d\n",
 | 
			
		||||
				gpio);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue