From: Bartosz Golaszewski <redacted>
Replace the pinctrl helpers taking the global GPIO number as argument
with the improved variants that instead take a pointer to the GPIO chip
and the controller-relative offset.
Signed-off-by: Bartosz Golaszewski <redacted>
---
drivers/gpio/gpio-aspeed.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
@@ -750,12 +750,12 @@ static int aspeed_gpio_request(struct gpio_chip *chip, unsigned int offset)if(!have_gpio(gpiochip_get_data(chip),offset))return-ENODEV;-returnpinctrl_gpio_request(chip->base+offset);+returnpinctrl_gpio_request_new(chip,offset);}staticvoidaspeed_gpio_free(structgpio_chip*chip,unsignedintoffset){-pinctrl_gpio_free(chip->base+offset);+pinctrl_gpio_free_new(chip,offset);}staticintusecs_to_cycles(structaspeed_gpio*gpio,unsignedlongusecs,
@@ -973,7 +973,7 @@ static int aspeed_gpio_set_config(struct gpio_chip *chip, unsigned int offset,elseif(param==PIN_CONFIG_BIAS_DISABLE||param==PIN_CONFIG_BIAS_PULL_DOWN||param==PIN_CONFIG_DRIVE_STRENGTH)-returnpinctrl_gpio_set_config(offset,config);+returnpinctrl_gpio_set_config_new(chip,offset,config);elseif(param==PIN_CONFIG_DRIVE_OPEN_DRAIN||param==PIN_CONFIG_DRIVE_OPEN_SOURCE)/* Return -ENOTSUPP to trigger emulation, as per datasheet */
--
2.39.2
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
From: Andrew Jeffery <andrew@codeconstruct.com.au> Date: 2023-10-03 23:30:55
On Tue, 2023-10-03 at 16:50 +0200, Bartosz Golaszewski wrote:
quoted hunk
From: Bartosz Golaszewski <redacted>
Replace the pinctrl helpers taking the global GPIO number as argument
with the improved variants that instead take a pointer to the GPIO chip
and the controller-relative offset.
Signed-off-by: Bartosz Golaszewski <redacted>
---
drivers/gpio/gpio-aspeed.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
On Wed, Oct 4, 2023 at 1:30 AM Andrew Jeffery
[off-list ref] wrote:
On Tue, 2023-10-03 at 16:50 +0200, Bartosz Golaszewski wrote:
quoted
From: Bartosz Golaszewski <redacted>
Replace the pinctrl helpers taking the global GPIO number as argument
with the improved variants that instead take a pointer to the GPIO chip
and the controller-relative offset.
Signed-off-by: Bartosz Golaszewski <redacted>
---
drivers/gpio/gpio-aspeed.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
@@ -750,12 +750,12 @@ static int aspeed_gpio_request(struct gpio_chip *chip, unsigned int offset)if(!have_gpio(gpiochip_get_data(chip),offset))return-ENODEV;-returnpinctrl_gpio_request(chip->base+offset);+returnpinctrl_gpio_request_new(chip,offset);}staticvoidaspeed_gpio_free(structgpio_chip*chip,unsignedintoffset){-pinctrl_gpio_free(chip->base+offset);+pinctrl_gpio_free_new(chip,offset);}staticintusecs_to_cycles(structaspeed_gpio*gpio,unsignedlongusecs,
@@ -973,7 +973,7 @@ static int aspeed_gpio_set_config(struct gpio_chip *chip, unsigned int offset,elseif(param==PIN_CONFIG_BIAS_DISABLE||param==PIN_CONFIG_BIAS_PULL_DOWN||param==PIN_CONFIG_DRIVE_STRENGTH)-returnpinctrl_gpio_set_config(offset,config);+returnpinctrl_gpio_set_config_new(chip,offset,config);
Ah, this looks like it removes a bug too. Nice.
Reviewed-by: Andrew Jeffery <andrew@codeconstruct.com.au>
quoted
else if (param == PIN_CONFIG_DRIVE_OPEN_DRAIN ||
param == PIN_CONFIG_DRIVE_OPEN_SOURCE)
/* Return -ENOTSUPP to trigger emulation, as per datasheet */
I sent a separate patch that fixes this issue for backporting, once
the other one is in next, we can update this series.
Bart
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
On Tue, Oct 03, 2023 at 04:50:46PM +0200, Bartosz Golaszewski wrote:
From: Bartosz Golaszewski <redacted>
Replace the pinctrl helpers taking the global GPIO number as argument
with the improved variants that instead take a pointer to the GPIO chip
and the controller-relative offset.
Signed-off-by: Bartosz Golaszewski <redacted>