From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56062) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z26PI-0003Uu-KW for qemu-devel@nongnu.org; Mon, 08 Jun 2015 19:24:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z26PD-0008F1-Ln for qemu-devel@nongnu.org; Mon, 08 Jun 2015 19:24:40 -0400 Received: from mail-ig0-x22c.google.com ([2607:f8b0:4001:c05::22c]:32870) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z26PD-0008Ex-GY for qemu-devel@nongnu.org; Mon, 08 Jun 2015 19:24:35 -0400 Received: by igbpi8 with SMTP id pi8so1832269igb.0 for ; Mon, 08 Jun 2015 16:24:34 -0700 (PDT) From: Cormac O'Brien Date: Mon, 8 Jun 2015 18:23:52 -0500 Message-Id: <1433805832-31863-1-git-send-email-i.am.cormac.obrien@gmail.com> Subject: [Qemu-devel] [PATCH] macio: remove nonexistent interrupt on pin 1 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: agraf@suse.de, mark.cave-ayland@ilande.co.uk, qemu-devel@nongnu.org The current macio device implementation declares an interrupt that doesn't seem to exist in the actual hardware or any other emulators. Mac OS 9 counts the presence of this interrupt as a fatal error and progresses further without it. Signed-off-by: Cormac O'Brien --- hw/misc/macio/macio.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/hw/misc/macio/macio.c b/hw/misc/macio/macio.c index 063ad80..306c95e 100644 --- a/hw/misc/macio/macio.c +++ b/hw/misc/macio/macio.c @@ -132,8 +132,6 @@ static int macio_common_initfn(PCIDevice *d) SysBusDevice *sysbus_dev; int ret; - d->config[0x3d] = 0x01; // interrupt on pin 1 - ret = qdev_init(DEVICE(&s->cuda)); if (ret < 0) { return ret; -- 2.4.2