mirror of
https://github.com/torvalds/linux.git
synced 2026-05-23 14:42:08 +02:00
wifi: wlcore: sdio: Make use of irq_get_trigger_type()
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@gmail.com> Reviewed-by: Sabeeh Khan <sabeeh-khan@ti.com> Tested-by: Sabeeh Khan <sabeeh-khan@ti.com> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://patch.msgid.link/20240904154919.118513-3-vassilisamir@gmail.com
This commit is contained in:
parent
50282c0283
commit
18ae128c1d
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user