Re: [PATCH v3] bcma: switch GPIO portions to use GPIOLIB_IRQCHIP

2015-12-22 Thread Linus Walleij
On Tue, Dec 22, 2015 at 1:09 PM, Hauke Mehrtens wrote: > On 12/22/2015 10:01 AM, Linus Walleij wrote: >> On Fri, Dec 18, 2015 at 7:01 PM, Hauke Mehrtens wrote: >>> On 12/18/2015 07:27 AM, Rafał Miłecki wrote: I'm afraid it wasn't tested on BCM47XX (MIPS) :( >>> >>> Yes, you are probably righ

Re: [PATCH v3] bcma: switch GPIO portions to use GPIOLIB_IRQCHIP

2015-12-22 Thread Hauke Mehrtens
On 12/22/2015 10:01 AM, Linus Walleij wrote: > On Fri, Dec 18, 2015 at 7:01 PM, Hauke Mehrtens wrote: >> On 12/18/2015 07:27 AM, Rafał Miłecki wrote: >>> I'm afraid it wasn't tested on BCM47XX (MIPS) :( >> >> Yes, you are probably right. >> >>> On 14 August 2015 at 00:21, Hauke Mehrtens wrote: >>

Re: [PATCH v3] bcma: switch GPIO portions to use GPIOLIB_IRQCHIP

2015-12-22 Thread Linus Walleij
On Fri, Dec 18, 2015 at 7:01 PM, Hauke Mehrtens wrote: > On 12/18/2015 07:27 AM, Rafał Miłecki wrote: >> I'm afraid it wasn't tested on BCM47XX (MIPS) :( > > Yes, you are probably right. > >> On 14 August 2015 at 00:21, Hauke Mehrtens wrote: >>> @@ -218,9 +187,8 @@ int bcma_gpio_init(struct bcma_

Re: [PATCH v3] bcma: switch GPIO portions to use GPIOLIB_IRQCHIP

2015-12-18 Thread Hauke Mehrtens
On 12/18/2015 07:27 AM, Rafał Miłecki wrote: > I'm afraid it wasn't tested on BCM47XX (MIPS) :( Yes, you are probably right. > On 14 August 2015 at 00:21, Hauke Mehrtens wrote: >> @@ -218,9 +187,8 @@ int bcma_gpio_init(struct bcma_drv_cc *cc) >> chip->set = bcma_gpio_set_va

Re: [PATCH v3] bcma: switch GPIO portions to use GPIOLIB_IRQCHIP

2015-12-17 Thread Rafał Miłecki
I'm afraid it wasn't tested on BCM47XX (MIPS) :( On 14 August 2015 at 00:21, Hauke Mehrtens wrote: > @@ -218,9 +187,8 @@ int bcma_gpio_init(struct bcma_drv_cc *cc) > chip->set = bcma_gpio_set_value; > chip->direction_input = bcma_gpio_direction_input; > chi

Re: [v3] bcma: switch GPIO portions to use GPIOLIB_IRQCHIP

2015-08-17 Thread Kalle Valo
> From: Linus Walleij > > This switches the BCMA GPIO driver to use GPIOLIB_IRQCHIP to > handle its interrupts instead of rolling its own copy of the > irqdomain handling etc. > > Signed-off-by: Linus Walleij > Signed-off-by: Hauke Mehrtens Thanks, applied to wireless-drivers-next.git. Kall

[PATCH v3] bcma: switch GPIO portions to use GPIOLIB_IRQCHIP

2015-08-13 Thread Hauke Mehrtens
From: Linus Walleij This switches the BCMA GPIO driver to use GPIOLIB_IRQCHIP to handle its interrupts instead of rolling its own copy of the irqdomain handling etc. Signed-off-by: Linus Walleij Signed-off-by: Hauke Mehrtens --- changes since: v2: * use bcma_bus_get_host_dev() v1: * I fixe