diff options
author | Vasileios Amoiridis <[email protected]> | 2024-09-13 01:59:25 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-10-13 17:16:28 +0200 |
commit | dcf6e7cf531ab8ea4a42abb30906ef414043b655 (patch) | |
tree | 4ee3eab505d7fb32dc083fb3d3e78f5f5cbe61c8 /tools/perf/scripts/python/exported-sql-viewer.py | |
parent | 2d23bc3c14fb6b08232f267bf15cf40cfce783b5 (diff) |
uio: uio_pdrv_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 <[email protected]>
Signed-off-by: Vasileios Amoiridis <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/exported-sql-viewer.py')
0 files changed, 0 insertions, 0 deletions