From patchwork Thu Apr 28 15:20:33 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 93245 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 377FFB6F5D for ; Fri, 29 Apr 2011 01:23:37 +1000 (EST) Received: from localhost ([::1]:51733 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QFT42-0004gX-AL for incoming@patchwork.ozlabs.org; Thu, 28 Apr 2011 11:23:34 -0400 Received: from eggs.gnu.org ([140.186.70.92]:48332) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QFT1V-0000yS-UZ for qemu-devel@nongnu.org; Thu, 28 Apr 2011 11:21:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QFT1U-0006gd-D2 for qemu-devel@nongnu.org; Thu, 28 Apr 2011 11:20:57 -0400 Received: from moutng.kundenserver.de ([212.227.126.186]:49329) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QFT1T-0006eV-Im; Thu, 28 Apr 2011 11:20:56 -0400 Received: from flocke.fritz.box (p5086FD13.dip.t-dialin.net [80.134.253.19]) by mrelayeu.kundenserver.de (node=mrbap2) with ESMTP (Nemesis) id 0MZ776-1QW2TE2kJA-00LaoI; Thu, 28 Apr 2011 17:20:49 +0200 Received: from stefan by flocke.fritz.box with local (Exim 4.72) (envelope-from ) id 1QFT1L-0002BY-S9; Thu, 28 Apr 2011 17:20:47 +0200 From: Stefan Weil To: QEMU Developers Date: Thu, 28 Apr 2011 17:20:33 +0200 Message-Id: <1304004042-8334-9-git-send-email-weil@mail.berlios.de> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1304004042-8334-1-git-send-email-weil@mail.berlios.de> References: <1304004042-8334-1-git-send-email-weil@mail.berlios.de> X-Provags-ID: V02:K0:EwJagtky+95ZkKwXzzDQOpxeJvJQovbeqq/4cw+AU0z YBhEkqQlc1eOnag7bMe/av1NAR9wBySb6QWnzYJpWHa0pt+XGE NgVgOCOx4bfNeYlt21FTBP7AKdevWFmnc2T7hy+dJfouJLzgPP 5DOSniiGJwI8Z7e2h+kCxDH9ly83dmU6ML4Khb/9Ne5Ep7Hxy2 jMom54kS8owGpuQ9bpfgA1U78E4kzCSAmSNF5XM/6SE/6GyRMi z2Mz7mvOM2t8W X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 212.227.126.186 Cc: qemu-trivial@nongnu.org Subject: [Qemu-devel] [PATCH 09/18] Fix typos in comments (imediately -> immediately) 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: Stefan Weil --- hw/lan9118.c | 2 +- hw/syborg_serial.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/lan9118.c b/hw/lan9118.c index 2dc8d18..4c42fe9 100644 --- a/hw/lan9118.c +++ b/hw/lan9118.c @@ -721,7 +721,7 @@ static void do_phy_write(lan9118_state *s, int reg, uint32_t val) break; } s->phy_control = val & 0x7980; - /* Complete autonegotiation imediately. */ + /* Complete autonegotiation immediately. */ if (val & 0x1000) { s->phy_status |= 0x0020; } diff --git a/hw/syborg_serial.c b/hw/syborg_serial.c index df2950f..2ef7175 100644 --- a/hw/syborg_serial.c +++ b/hw/syborg_serial.c @@ -126,7 +126,7 @@ static void do_dma_tx(SyborgSerialState *s, uint32_t count) s->dma_tx_ptr += count; } /* QEMU char backends do not have a nonblocking mode, so we transmit all - the data imediately and the interrupt status will be unchanged. */ + the data immediately and the interrupt status will be unchanged. */ } /* Initiate RX DMA, and transfer data from the FIFO. */