projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d22083a
)
genirq: Remove unneeded forward declaration
author
Dawei Li
<dawei.li@shingroup.cn>
Mon, 22 Jan 2024 08:57:14 +0000
(16:57 +0800)
committer
Thomas Gleixner
<tglx@linutronix.de>
Wed, 24 Jan 2024 15:02:48 +0000
(16:02 +0100)
The protoype of irq_flow_handler_t is independent of irq_data, so remove
unneeded forward declaration.
Signed-off-by: Dawei Li <dawei.li@shingroup.cn>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link:
https://lore.kernel.org/r/20240122085716.2999875-4-dawei.li@shingroup.cn
include/linux/irqhandler.h
patch
|
blob
|
history
diff --git
a/include/linux/irqhandler.h
b/include/linux/irqhandler.h
index c30f454a9518f149eaf63615cf654d0d042c2e24..72dd1eb3a0e7f60cc8e6d726fd9ce12e16bd042f 100644
(file)
--- a/
include/linux/irqhandler.h
+++ b/
include/linux/irqhandler.h
@@
-8,7
+8,7
@@
*/
struct irq_desc;
-struct irq_data;
+
typedef void (*irq_flow_handler_t)(struct irq_desc *desc);
#endif