From patchwork Mon Jun 8 23:23:52 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cormac O'Brien X-Patchwork-Id: 482047 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 986F2140213 for ; Tue, 9 Jun 2015 09:24:59 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=uZwSHddB; dkim-atps=neutral Received: from localhost ([::1]:60549 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z26PX-0003lP-UD for incoming@patchwork.ozlabs.org; Mon, 08 Jun 2015 19:24:55 -0400 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=947Izj1tQjRErm3TXYgEZfZf1hJzjF54L0CqPTKHYB4=; b=uZwSHddBDXnOWLlt6biFY3r1D4pt+mEeXbTDAW/enHifsl0g98b4ZokgP9aCjUjT2d MKmhXK/2x4SI7qXyu4+RnB0AaDvCR2TDD5e49bEJQtIJMwIp4srakExKXZEYFnuxK6Jh e8fkZeGROm/CmszgUUjkPDk2RfK6v8VcvkR4pmNkYHgQjeZPiruAY00ovFnqnGQ/JcJq 8UN8H3bqwS3dT2uaRqRmI06ls2ovmS39NkiLPJNBSDUk5uWe1EBElxiNwE0xGonWC3jS 0njP3E3tErh1bpNNaG8DbtUQYG3AG/1VdZDCW44z79+G9hTB6l8yYxVZUkD5x/6b6cg1 retQ== X-Received: by 10.107.164.70 with SMTP id n67mr23263741ioe.8.1433805874507; Mon, 08 Jun 2015 16:24:34 -0700 (PDT) Received: from cormac-w520.depaul.edu (lpc-221-114.lpc-wireless.depaul.edu. [75.102.221.114]) by mx.google.com with ESMTPSA id 140sm2769786ion.16.2015.06.08.16.24.33 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 08 Jun 2015 16:24:34 -0700 (PDT) From: Cormac O'Brien To: agraf@suse.de, mark.cave-ayland@ilande.co.uk, qemu-devel@nongnu.org Date: Mon, 8 Jun 2015 18:23:52 -0500 Message-Id: <1433805832-31863-1-git-send-email-i.am.cormac.obrien@gmail.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4001:c05::22c Subject: [Qemu-devel] [PATCH] macio: remove nonexistent interrupt on pin 1 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@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;