wifi: wlcore: sdio: Use helper to define resources

Resources definition can become simpler and more organised by
using the dedicated helpers.

Signed-off-by: Vasileios Amoiridis <vassilisamir@gmail.com>
Tested-by: Sabeeh Khan <sabeeh-khan@ti.com>
Reviewed-by: Sabeeh Khan <sabeeh-khan@ti.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://patch.msgid.link/20240904154919.118513-4-vassilisamir@gmail.com
This commit is contained in:
Vasileios Amoiridis 2024-09-04 17:49:19 +02:00 committed by Kalle Valo
parent 18ae128c1d
commit a3ede2b0e6

View File

@ -323,15 +323,12 @@ static int wl1271_probe(struct sdio_func *func,
memset(res, 0x00, sizeof(res));
res[0].start = irq;
res[0].flags = IORESOURCE_IRQ | irq_get_trigger_type(irq);
res[0].name = "irq";
res[0] = DEFINE_RES_IRQ_NAMED(irq, "irq");
res[0].flags |= irq_get_trigger_type(irq);
if (wakeirq > 0) {
res[1].start = wakeirq;
res[1].flags = IORESOURCE_IRQ | irq_get_trigger_type(wakeirq);
res[1].name = "wakeirq";
res[1] = DEFINE_RES_IRQ_NAMED(wakeirq, "wakeirq");
res[1].flags |= irq_get_trigger_type(wakeirq);
num_irqs = 2;
} else {
num_irqs = 1;