From patchwork Mon Jan 21 10:59:40 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 214083 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 22AE92C0079 for ; Mon, 21 Jan 2013 22:00:09 +1100 (EST) Received: from localhost ([::1]:49738 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxF6i-0004nf-MM for incoming@patchwork.ozlabs.org; Mon, 21 Jan 2013 06:00:04 -0500 Received: from eggs.gnu.org ([208.118.235.92]:52930) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxF6X-0004iB-F7 for qemu-devel@nongnu.org; Mon, 21 Jan 2013 05:59:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TxF6U-0006xn-T3 for qemu-devel@nongnu.org; Mon, 21 Jan 2013 05:59:53 -0500 Received: from mx1.redhat.com ([209.132.183.28]:46366) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxF6U-0006xj-LZ for qemu-devel@nongnu.org; Mon, 21 Jan 2013 05:59:50 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r0LAxnOQ017344 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 21 Jan 2013 05:59:50 -0500 Received: from localhost (ovpn-112-39.ams2.redhat.com [10.36.112.39]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r0LAxmm4001859; Mon, 21 Jan 2013 05:59:49 -0500 From: Stefan Hajnoczi To: Date: Mon, 21 Jan 2013 11:59:40 +0100 Message-Id: <1358765983-30201-2-git-send-email-stefanha@redhat.com> In-Reply-To: <1358765983-30201-1-git-send-email-stefanha@redhat.com> References: <1358765983-30201-1-git-send-email-stefanha@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Stefan Weil , Anthony Liguori , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 1/4] hw: Spelling fix in log message 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 From: Stefan Weil defineition -> definition Signed-off-by: Stefan Weil Reviewed-by: Andreas F=E4rber Signed-off-by: Stefan Hajnoczi --- hw/openrisc_sim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/openrisc_sim.c b/hw/openrisc_sim.c index fb47cdc..6c443ba 100644 --- a/hw/openrisc_sim.c +++ b/hw/openrisc_sim.c @@ -107,7 +107,7 @@ static void openrisc_sim_init(QEMUMachineInitArgs *args) for (n = 0; n < smp_cpus; n++) { cpu = cpu_openrisc_init(cpu_model); if (cpu == NULL) { - qemu_log("Unable to find CPU defineition!\n"); + qemu_log("Unable to find CPU definition!\n"); exit(1); } qemu_register_reset(main_cpu_reset, cpu);