aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
Diffstat (limited to 'hw')
-rw-r--r--hw/xive.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/hw/xive.c b/hw/xive.c
index 39b1199..4a2b0df 100644
--- a/hw/xive.c
+++ b/hw/xive.c
@@ -3629,18 +3629,6 @@ static int64_t opal_xive_get_irq_info(uint32_t girq,
if (out_flags)
*out_flags = xive_convert_irq_flags(s->flags);
- /*
- * If the orig source has a set_xive callback, then set
- * OPAL_XIVE_IRQ_MASK_VIA_FW as masking/unmasking requires
- * source specific workarounds. Same with EOI.
- */
- if (out_flags && s->orig_ops) {
- if (s->orig_ops->set_xive)
- *out_flags |= OPAL_XIVE_IRQ_MASK_VIA_FW;
- if (s->orig_ops->eoi)
- *out_flags |= OPAL_XIVE_IRQ_EOI_VIA_FW;
- }
-
idx = girq - s->esb_base;
if (out_esb_shift)