From patchwork Mon Sep 28 21:27:33 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 34401 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 0B6CEB7C04 for ; Tue, 29 Sep 2009 07:30:53 +1000 (EST) Received: from localhost ([127.0.0.1]:33006 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MsNo2-0004wv-8i for incoming@patchwork.ozlabs.org; Mon, 28 Sep 2009 17:30:50 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MsNky-0003ra-IF for qemu-devel@nongnu.org; Mon, 28 Sep 2009 17:27:40 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MsNku-0003oi-St for qemu-devel@nongnu.org; Mon, 28 Sep 2009 17:27:40 -0400 Received: from [199.232.76.173] (port=53373 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MsNku-0003oa-IA for qemu-devel@nongnu.org; Mon, 28 Sep 2009 17:27:36 -0400 Received: from moutng.kundenserver.de ([212.227.126.188]:65213) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MsNkt-0003mv-VQ for qemu-devel@nongnu.org; Mon, 28 Sep 2009 17:27:36 -0400 Received: from flocke.weilnetz.de (p54ADC6AC.dip.t-dialin.net [84.173.198.172]) by mrelayeu.kundenserver.de (node=mreu2) with ESMTP (Nemesis) id 0MOmRO-1MyS24158Q-005cwI; Mon, 28 Sep 2009 23:27:34 +0200 Received: from stefan by flocke.weilnetz.de with local (Exim 4.69) (envelope-from ) id 1MsNkr-0001T4-CG; Mon, 28 Sep 2009 23:27:33 +0200 From: Stefan Weil To: QEMU Developers Date: Mon, 28 Sep 2009 23:27:33 +0200 Message-Id: <1254173253-5620-1-git-send-email-weil@mail.berlios.de> X-Mailer: git-send-email 1.5.6.5 X-Provags-ID: V01U2FsdGVkX19UqRgfasbAnOoqjaWve2kINcqsh1MQ4DSP7VW C7Dux/App2kKwXnn9FDtWV8JPMXq4Keq7iS2KwjTQWOmOZEU4o bnOIoiI5wrR1gsY1NAg3c+X3b6qtHsKJoHzFsdja4A= X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Subject: [Qemu-devel] [PATCH] mips: Fix spelling in comment X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org inofficial -> unofficial Thanks to Blue Swirl. Signed-off-by: Stefan Weil --- target-mips/translate.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/target-mips/translate.c b/target-mips/translate.c index 42a5753..a8e8ae3 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -187,10 +187,10 @@ enum { OPC_MOVCI = 0x01 | OPC_SPECIAL, /* Special */ - OPC_PMON = 0x05 | OPC_SPECIAL, /* inofficial */ + OPC_PMON = 0x05 | OPC_SPECIAL, /* unofficial */ OPC_SYSCALL = 0x0C | OPC_SPECIAL, OPC_BREAK = 0x0D | OPC_SPECIAL, - OPC_SPIM = 0x0E | OPC_SPECIAL, /* inofficial */ + OPC_SPIM = 0x0E | OPC_SPECIAL, /* unofficial */ OPC_SYNC = 0x0F | OPC_SPECIAL, OPC_SPECIAL15_RESERVED = 0x15 | OPC_SPECIAL,