Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

uio: uio_dmem_genirq: Make use of irq_get_trigger_type()

Convert the following case:

struct irq_data *irq_data = irq_get_irq_data(irq);

if (irq_data && irqd_get_trigger_type(irq_data) ... ) {
...
}

to the simpler:

if (irq_get_trigger_type(irq) ... ) {
...
}

by using the irq_get_trigger_type() function.

Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Vasileios Amoiridis <vassilisamir@gmail.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20240912235925.54465-2-vassilisamir@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Vasileios Amoiridis and committed by
Greg Kroah-Hartman
2d23bc3c 1bca6ee0

+1 -4
+1 -4
drivers/uio/uio_dmem_genirq.c
··· 210 210 } 211 211 212 212 if (uioinfo->irq) { 213 - struct irq_data *irq_data = irq_get_irq_data(uioinfo->irq); 214 - 215 213 /* 216 214 * If a level interrupt, dont do lazy disable. Otherwise the 217 215 * irq will fire again since clearing of the actual cause, on ··· 217 219 * irqd_is_level_type() isn't used since isn't valid until 218 220 * irq is configured. 219 221 */ 220 - if (irq_data && 221 - irqd_get_trigger_type(irq_data) & IRQ_TYPE_LEVEL_MASK) { 222 + if (irq_get_trigger_type(uioinfo->irq) & IRQ_TYPE_LEVEL_MASK) { 222 223 dev_dbg(&pdev->dev, "disable lazy unmask\n"); 223 224 irq_set_status_flags(uioinfo->irq, IRQ_DISABLE_UNLAZY); 224 225 }