From patchwork Tue Aug 21 21:31:26 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: BALATON Zoltan X-Patchwork-Id: 179197 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 6A83F2C007C for ; Wed, 22 Aug 2012 12:16:42 +1000 (EST) Received: from localhost ([::1]:46757 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T40Uq-0001Aw-Gf for incoming@patchwork.ozlabs.org; Tue, 21 Aug 2012 22:16:40 -0400 Received: from eggs.gnu.org ([208.118.235.92]:57644) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T3w8o-0004Bw-KR for qemu-devel@nongnu.org; Tue, 21 Aug 2012 17:37:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T3w8n-0006YH-Ok for qemu-devel@nongnu.org; Tue, 21 Aug 2012 17:37:38 -0400 Received: from mono.eik.bme.hu ([152.66.115.2]:54063) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T3w8n-0006Y8-Hy for qemu-devel@nongnu.org; Tue, 21 Aug 2012 17:37:37 -0400 Received: from localhost (localhost [127.0.0.1]) by mono.eik.bme.hu (Postfix) with ESMTP id 64B1D27E; Tue, 21 Aug 2012 23:31:26 +0200 (CEST) X-Virus-Scanned: amavisd-new at eik.bme.hu Received: from mono.eik.bme.hu ([127.0.0.1]) by localhost (mono.eik.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id YrGnU9qPilTl; Tue, 21 Aug 2012 23:31:26 +0200 (CEST) Received: by mono.eik.bme.hu (Postfix, from userid 432) id 3872AA6F; Tue, 21 Aug 2012 23:31:26 +0200 (CEST) Date: Tue, 21 Aug 2012 23:31:26 +0200 (CEST) From: BALATON Zoltan X-X-Sender: balaton@mono To: qemu-devel@nongnu.org Message-ID: MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-Received-From: 152.66.115.2 X-Mailman-Approved-At: Tue, 21 Aug 2012 22:16:07 -0400 Cc: qemu-trivial@nongnu.org Subject: [Qemu-devel] [PATCH] Fix copy&paste typos in documentation comments 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: BALATON Zoltan --- memory.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/memory.h b/memory.h index bd1bbae..aba5721 100644 --- a/memory.h +++ b/memory.h @@ -252,9 +252,9 @@ void memory_region_init_ram(MemoryRegion *mr, uint64_t size); /** - * memory_region_init_ram: Initialize RAM memory region from a user-provided. - * pointer. Accesses into the region will modify - * memory directly. + * memory_region_init_ram_ptr: Initialize RAM memory region from a + * user-provided pointer. Accesses into the + * region will modify memory directly. * * @mr: the #MemoryRegion to be initialized. * @name: the name of the region. @@ -581,7 +581,8 @@ void memory_region_add_subregion(MemoryRegion *mr, target_phys_addr_t offset, MemoryRegion *subregion); /** - * memory_region_add_subregion: Add a subregion to a container, with overlap. + * memory_region_add_subregion_overlap: Add a subregion to a container + * with overlap. * * Adds a subregion at @offset. The subregion may overlap with other * subregions. Conflicts are resolved by having a higher @priority hide a @@ -743,7 +744,7 @@ void memory_listener_unregister(MemoryListener *listener); void memory_global_dirty_log_start(void); /** - * memory_global_dirty_log_stop: begin dirty logging for all regions + * memory_global_dirty_log_stop: end dirty logging for all regions */ void memory_global_dirty_log_stop(void);