summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAnup Patel <[email protected]>2026-02-13 11:23:36 +0530
committerAnup Patel <[email protected]>2026-03-22 10:52:41 +0530
commit2110aab68fd2e33151416c1ca3070fbb79db814c (patch)
treea718e5a826f80dffb55f65f1174e050f2ddcf232 /include
parent51837c731b017bd59b91963aba1dc13691ac07dd (diff)
lib: sbi_irqchip: Rename irq_handle() callback to process_hwirqs()
The irq_handle() callback of irqchip device is meant to process hardware interrupt of the irqchip hence rename it accordingly. Signed-off-by: Anup Patel <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Anup Patel <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/sbi/sbi_irqchip.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sbi/sbi_irqchip.h b/include/sbi/sbi_irqchip.h
index 97332248..cda1e50f 100644
--- a/include/sbi/sbi_irqchip.h
+++ b/include/sbi/sbi_irqchip.h
@@ -23,8 +23,8 @@ struct sbi_irqchip_device {
/** Initialize per-hart state for the current hart */
int (*warm_init)(struct sbi_irqchip_device *chip);
- /** Handle an IRQ from this irqchip */
- int (*irq_handle)(void);
+ /** Process hardware interrupts from this irqchip */
+ int (*process_hwirqs)(void);
};
/**