From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51549) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSZLk-0007Vg-1H for qemu-devel@nongnu.org; Mon, 02 Mar 2015 18:02:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YSZLc-00066A-Qs for qemu-devel@nongnu.org; Mon, 02 Mar 2015 18:02:07 -0500 Received: from s16892447.onlinehome-server.info ([82.165.15.123]:53739) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSZLc-000660-Lx for qemu-devel@nongnu.org; Mon, 02 Mar 2015 18:02:00 -0500 From: Mark Cave-Ayland Date: Mon, 2 Mar 2015 23:01:17 +0000 Message-Id: <1425337280-21997-7-git-send-email-mark.cave-ayland@ilande.co.uk> In-Reply-To: <1425337280-21997-1-git-send-email-mark.cave-ayland@ilande.co.uk> References: <1425337280-21997-1-git-send-email-mark.cave-ayland@ilande.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 6/9] m48t59: add m48t59 sysbus device List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Mark Cave-Ayland This is for subsequent use by the sun4u machine. Reviewed-by: Hervé Poussineau Signed-off-by: Mark Cave-Ayland --- hw/timer/m48t59.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hw/timer/m48t59.c b/hw/timer/m48t59.c index d3d8079..8ab683d 100644 --- a/hw/timer/m48t59.c +++ b/hw/timer/m48t59.c @@ -129,6 +129,10 @@ static M48txxInfo m48txx_info[] = { .model = 8, .size = 0x2000, },{ + .sysbus_name = "sysbus-m48t59", + .model = 59, + .size = 0x2000, + },{ .isa_name = "isa-m48t59", .model = 59, .size = 0x2000, -- 1.7.10.4