From patchwork Sun Jan 8 21:11:48 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Blue Swirl X-Patchwork-Id: 134943 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id E8CDCB6F6F for ; Mon, 9 Jan 2012 08:12:28 +1100 (EST) Received: from localhost ([::1]:59050 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rk02O-0004Nh-Sd for incoming@patchwork.ozlabs.org; Sun, 08 Jan 2012 16:12:20 -0500 Received: from eggs.gnu.org ([140.186.70.92]:49935) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rk02G-0004KX-9l for qemu-devel@nongnu.org; Sun, 08 Jan 2012 16:12:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rk02E-0006xe-CB for qemu-devel@nongnu.org; Sun, 08 Jan 2012 16:12:12 -0500 Received: from mail-iy0-f173.google.com ([209.85.210.173]:60364) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rk02E-0006uy-91 for qemu-devel@nongnu.org; Sun, 08 Jan 2012 16:12:10 -0500 Received: by mail-iy0-f173.google.com with SMTP id j37so6811411iag.4 for ; Sun, 08 Jan 2012 13:12:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; bh=n7efutNe9BST1A7lRY3JHLoyP3KNq8MCjdUQSqBwq90=; b=xiOLvc9h65ICyx8Fr3MInB2OtQaFAl9cEo7IETWx2fB5r0uP5mr/yqmQusvZ1ekx6S koLbZwwuMYE6SfynhcZeP328RE9hEuRPgCIa7jkg2AVhnTQSFLja2bfu3F5p8UU2dev2 8DoFtdwVRcwTPjbaUhwcF0duYL9ZhWHvNpIhE= Received: by 10.50.190.196 with SMTP id gs4mr16476580igc.14.1326057130039; Sun, 08 Jan 2012 13:12:10 -0800 (PST) MIME-Version: 1.0 Received: by 10.50.51.42 with HTTP; Sun, 8 Jan 2012 13:11:48 -0800 (PST) From: Blue Swirl Date: Sun, 8 Jan 2012 21:11:48 +0000 Message-ID: To: qemu-devel X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.210.173 Subject: [Qemu-devel] [PATCH 4/4] sga: fix copypasta 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 Signed-off-by: Blue Swirl Reviewed-by: Andreas Färber --- hw/sga.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) From 5a5ed33f1a4abeef7999ac2a08bd2f82f108de69 Mon Sep 17 00:00:00 2001 Message-Id: <5a5ed33f1a4abeef7999ac2a08bd2f82f108de69.1326056648.git.blauwirbel@gmail.com> In-Reply-To: <44deac8ff21ed0b05757a03f3b558db7c71e29ab.1326056648.git.blauwirbel@gmail.com> References: <44deac8ff21ed0b05757a03f3b558db7c71e29ab.1326056648.git.blauwirbel@gmail.com> From: Blue Swirl Date: Sun, 23 Oct 2011 14:39:46 +0000 Subject: [PATCH 4/4] sga: fix copypasta Signed-off-by: Blue Swirl --- hw/sga.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/sga.c b/hw/sga.c index 7ef750a..ea11937 100644 --- a/hw/sga.c +++ b/hw/sga.c @@ -35,7 +35,7 @@ typedef struct ISAGAState { ISADevice dev; } ISASGAState; -static int isa_cirrus_vga_initfn(ISADevice *dev) +static int sga_initfn(ISADevice *dev) { rom_add_vga(SGABIOS_FILENAME); return 0; @@ -45,7 +45,7 @@ static ISADeviceInfo sga_info = { .qdev.name = "sga", .qdev.desc = "Serial Graphics Adapter", .qdev.size = sizeof(ISASGAState), - .init = isa_cirrus_vga_initfn, + .init = sga_initfn, }; static void sga_register(void) -- 1.7.2.5