aboutsummaryrefslogtreecommitdiff
path: root/hw/lpc.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/lpc.c')
-rw-r--r--hw/lpc.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/hw/lpc.c b/hw/lpc.c
index 20e54c9..3f2300c 100644
--- a/hw/lpc.c
+++ b/hw/lpc.c
@@ -1184,23 +1184,6 @@ void lpc_serirq(uint32_t chip_id, uint32_t index)
unlock(&lpc->lock);
}
-void lpc_p9_sirq_eoi(uint32_t chip_id, uint32_t index)
-{
- struct proc_chip *chip = get_chip(chip_id);
- struct lpcm *lpc;
- uint32_t rmask;
-
- /* No initialized LPC controller on that chip */
- if (!chip || !chip->lpc)
- return;
- lpc = chip->lpc;
-
- lock(&lpc->lock);
- rmask = lpc->sirq_rmasks[index];
- opb_write(lpc, lpc_reg_opb_base + LPC_HC_IRQSTAT, rmask, 4);
- unlock(&lpc->lock);
-}
-
void lpc_all_interrupts(uint32_t chip_id)
{
struct proc_chip *chip = get_chip(chip_id);