From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:60578) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RvokJ-0001D6-IJ for qemu-devel@nongnu.org; Fri, 10 Feb 2012 06:34:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RvokD-0006yk-6W for qemu-devel@nongnu.org; Fri, 10 Feb 2012 06:34:31 -0500 Received: from e06smtp12.uk.ibm.com ([195.75.94.108]:58437) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RvokC-0006yR-VN for qemu-devel@nongnu.org; Fri, 10 Feb 2012 06:34:25 -0500 Received: from /spool/local by e06smtp12.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 10 Feb 2012 11:34:24 -0000 Received: from d06av01.portsmouth.uk.ibm.com (d06av01.portsmouth.uk.ibm.com [9.149.37.212]) by d06nrmr1307.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q1ABYLC61228826 for ; Fri, 10 Feb 2012 11:34:21 GMT Received: from d06av01.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av01.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q19LYMpP026517 for ; Thu, 9 Feb 2012 14:34:22 -0700 From: Stefan Hajnoczi Date: Fri, 10 Feb 2012 11:34:10 +0000 Message-Id: <1328873653-10554-7-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1328873653-10554-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1328873653-10554-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 6/9] fmopl: Fix typo in function name List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Stefan Weil , qemu-devel@nongnu.org, Stefan Hajnoczi From: Stefan Weil Fix a typo in a local function name. Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- hw/fmopl.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/fmopl.c b/hw/fmopl.c index 734d2f4..f0a0234 100644 --- a/hw/fmopl.c +++ b/hw/fmopl.c @@ -733,7 +733,7 @@ INLINE void CSMKeyControll(OPL_CH *CH) } /* ---------- opl initialize ---------- */ -static void OPL_initalize(FM_OPL *OPL) +static void OPL_initialize(FM_OPL *OPL) { int fn; @@ -1239,7 +1239,7 @@ FM_OPL *OPLCreate(int type, int clock, int rate) OPL->rate = rate; OPL->max_ch = max_ch; /* init grobal tables */ - OPL_initalize(OPL); + OPL_initialize(OPL); /* reset chip */ OPLResetChip(OPL); #ifdef OPL_OUTPUT_LOG -- 1.7.8.3