diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-10-13 18:49:20 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-11-10 13:49:20 +0000 |
commit | e62774c41006bc8072579515b9f6782b56c33bd1 (patch) | |
tree | eca1fb177f5519ad90764f927e017fc6c386490a /hw/sun4c_intctl.c | |
parent | 4d4d9b3adb0e36e75cf9b2126ee1d01b1d59f8a1 (diff) |
sun4c: remove unused functions
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/sun4c_intctl.c')
-rw-r--r-- | hw/sun4c_intctl.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/hw/sun4c_intctl.c b/hw/sun4c_intctl.c index 8cd70ab64c..702e9f5444 100644 --- a/hw/sun4c_intctl.c +++ b/hw/sun4c_intctl.c @@ -94,29 +94,6 @@ static const MemoryRegionOps sun4c_intctl_mem_ops = { }, }; -void sun4c_pic_info(Monitor *mon, void *opaque) -{ - Sun4c_INTCTLState *s = opaque; - - monitor_printf(mon, "master: pending 0x%2.2x, enabled 0x%2.2x\n", - s->pending, s->reg); -} - -void sun4c_irq_info(Monitor *mon, void *opaque) -{ -#ifndef DEBUG_IRQ_COUNT - monitor_printf(mon, "irq statistic code not compiled.\n"); -#else - Sun4c_INTCTLState *s = opaque; - int64_t count; - - monitor_printf(mon, "IRQ statistics:\n"); - count = s->irq_count; - if (count > 0) - monitor_printf(mon, " %" PRId64 "\n", count); -#endif -} - static const uint32_t intbit_to_level[] = { 0, 1, 4, 6, 8, 10, 0, 14, }; static void sun4c_check_interrupts(void *opaque) |