On Tue, 2024-05-07 at 20:59 +0800, Tianyang Zhang wrote:Thank you for your feedback. I will make the necessary changes here
+static inline void loongarch_avec_ack_irq(struct irq_data *d)"inline" has no use here because these functions are only called via
+{
+}
+
+static inline void loongarch_avec_unmask_irq(struct irq_data *d)
+{
+}
+
+static inline void loongarch_avec_mask_irq(struct irq_data *d)
+{
+}
function pointers, thus such calls cannot be inline-able. I'd suggest
to remove "inline" for them.