From patchwork Mon Oct 24 19:52:38 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Herv=C3=A9_Poussineau?= X-Patchwork-Id: 121400 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 3DA4F1007D7 for ; Tue, 25 Oct 2011 06:52:31 +1100 (EST) Received: from localhost ([::1]:43688 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIQZO-0005uh-Cn for incoming@patchwork.ozlabs.org; Mon, 24 Oct 2011 15:52:26 -0400 Received: from eggs.gnu.org ([140.186.70.92]:55025) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIQZH-0005uZ-VC for qemu-devel@nongnu.org; Mon, 24 Oct 2011 15:52:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RIQZG-0004lr-R3 for qemu-devel@nongnu.org; Mon, 24 Oct 2011 15:52:19 -0400 Received: from smtp25.services.sfr.fr ([93.17.128.121]:37676) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIQZG-0004l1-MM for qemu-devel@nongnu.org; Mon, 24 Oct 2011 15:52:18 -0400 Received: from filter.sfr.fr (localhost [127.0.0.1]) by msfrf2501.sfr.fr (SMTP Server) with ESMTP id 729EA700009F; Mon, 24 Oct 2011 21:52:10 +0200 (CEST) Received: from localhost.localdomain (unknown [92.90.16.152]) by msfrf2501.sfr.fr (SMTP Server) with ESMTP id EE3B0700009B; Mon, 24 Oct 2011 21:52:09 +0200 (CEST) X-SFR-UUID: 20111024195209975.EE3B0700009B@msfrf2501.sfr.fr From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= To: qemu-devel@nongnu.org Date: Mon, 24 Oct 2011 21:52:38 +0200 Message-Id: <1319485958-4849-1-git-send-email-hpoussin@reactos.org> X-Mailer: git-send-email 1.7.6.3 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 93.17.128.121 Cc: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Subject: [Qemu-devel] [PATCH 01/12] Fix typo: buf -> bus 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: Hervé Poussineau --- hw/audiodev.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/audiodev.h b/hw/audiodev.h index 8e930b2..d60c349 100644 --- a/hw/audiodev.h +++ b/hw/audiodev.h @@ -11,7 +11,7 @@ int Adlib_init(qemu_irq *pic); int GUS_init(qemu_irq *pic); /* ac97.c */ -int ac97_init(PCIBus *buf); +int ac97_init(PCIBus *bus); /* cs4231a.c */ int cs4231a_init(qemu_irq *pic);