aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hw/omap_intc.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/hw/omap_intc.c b/hw/omap_intc.c
index 5076e07ed5..4bfd216b63 100644
--- a/hw/omap_intc.c
+++ b/hw/omap_intc.c
@@ -410,7 +410,11 @@ static uint64_t omap2_inth_read(void *opaque, target_phys_addr_t addr,
offset &= ~0x60;
bank = &s->bank[bank_no];
} else {
- OMAP_BAD_REG(addr);
+ /* Linux reads the nonexistent interrupt status register at 0xf8
+ * every time through its interrupt handler, so don't actually
+ * warn about it because it swamps the console with output.
+ */
+ /* OMAP_BAD_REG(addr); */
return 0;
}
}