Re: [PATCH 1/3] gpio: bcm-kona: drop ->irq_{request,release}_resources hooks

From: Scott Branden
Date: Tue Feb 12 2019 - 15:53:48 EST



On 2019-02-08 3:51 a.m., Thomas Petazzoni wrote:
Those hooks implement the exact same behavior as the default hooks by
gpiolib, so there is no point in having a duplicated definition in
gpio-bcm-kona.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@xxxxxxxxxxx>
Acked-by: Scott Branden <scott.branden@xxxxxxxxxxxx>
Cc: Ray Jui <rjui@xxxxxxxxxxxx>
Cc: Florian Fainelli <f.fainelli@xxxxxxxxx>
Cc: Scott Branden <sbranden@xxxxxxxxxxxx>
Cc: bcm-kernel-feedback-list@xxxxxxxxxxxx
---
Note: this commit was only build tested.
---
drivers/gpio/gpio-bcm-kona.c | 16 ----------------
1 file changed, 16 deletions(-)

diff --git a/drivers/gpio/gpio-bcm-kona.c b/drivers/gpio/gpio-bcm-kona.c
index c5536a509b59..0ae806edabc2 100644
--- a/drivers/gpio/gpio-bcm-kona.c
+++ b/drivers/gpio/gpio-bcm-kona.c
@@ -484,28 +484,12 @@ static void bcm_kona_gpio_irq_handler(struct irq_desc *desc)
chained_irq_exit(chip, desc);
}
-static int bcm_kona_gpio_irq_reqres(struct irq_data *d)
-{
- struct bcm_kona_gpio *kona_gpio = irq_data_get_irq_chip_data(d);
-
- return gpiochip_reqres_irq(&kona_gpio->gpio_chip, d->hwirq);
-}
-
-static void bcm_kona_gpio_irq_relres(struct irq_data *d)
-{
- struct bcm_kona_gpio *kona_gpio = irq_data_get_irq_chip_data(d);
-
- gpiochip_relres_irq(&kona_gpio->gpio_chip, d->hwirq);
-}
-
static struct irq_chip bcm_gpio_irq_chip = {
.name = "bcm-kona-gpio",
.irq_ack = bcm_kona_gpio_irq_ack,
.irq_mask = bcm_kona_gpio_irq_mask,
.irq_unmask = bcm_kona_gpio_irq_unmask,
.irq_set_type = bcm_kona_gpio_irq_set_type,
- .irq_request_resources = bcm_kona_gpio_irq_reqres,
- .irq_release_resources = bcm_kona_gpio_irq_relres,
};
static struct of_device_id const bcm_kona_gpio_of_match[] = {