Re: [PATCH wireless-next v2 2/3] wifi: wlcore: sdio: Make use of irq_get_trigger_type()

From: Khan, Sabeeh
Date: Mon Sep 09 2024 - 05:37:09 EST


Hi Vasileios,

On 9/4/2024 7:49 PM, Vasileios Amoiridis wrote:
> Convert irqd_get_trigger_type(irq_get_irq_data(irq)) cases to the more
> simple irq_get_trigger_type(irq).
>
> Signed-off-by: Vasileios Amoiridis <vassilisamir@xxxxxxxxx>
> ---
> drivers/net/wireless/ti/wlcore/sdio.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/net/wireless/ti/wlcore/sdio.c b/drivers/net/wireless/ti/wlcore/sdio.c
> index 92fb5b8dcdae..9e1b644beba9 100644
> --- a/drivers/net/wireless/ti/wlcore/sdio.c
> +++ b/drivers/net/wireless/ti/wlcore/sdio.c
> @@ -324,15 +324,13 @@ static int wl1271_probe(struct sdio_func *func,
> memset(res, 0x00, sizeof(res));
>
> res[0].start = irq;
> - res[0].flags = IORESOURCE_IRQ |
> - irqd_get_trigger_type(irq_get_irq_data(irq));
> + res[0].flags = IORESOURCE_IRQ | irq_get_trigger_type(irq);
> res[0].name = "irq";
>
>
> if (wakeirq > 0) {
> res[1].start = wakeirq;
> - res[1].flags = IORESOURCE_IRQ |
> - irqd_get_trigger_type(irq_get_irq_data(wakeirq));
> + res[1].flags = IORESOURCE_IRQ | irq_get_trigger_type(wakeirq);
> res[1].name = "wakeirq";
> num_irqs = 2;
> } else {
Reviewed-by: Sabeeh Khan <sabeeh-khan@xxxxxx>
Tested-by: Sabeeh Khan <sabeeh-khan@xxxxxx>