From patchwork Tue May 15 13:48:35 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 135879 Delivered-To: patches@linaro.org Received: by 2002:a2e:9706:0:0:0:0:0 with SMTP id r6-v6csp1042136lji; Tue, 15 May 2018 06:48:38 -0700 (PDT) X-Google-Smtp-Source: AB8JxZoC3U7kxsgieHrJW8PdOPYvU0n4R0evLDtUg+EP8TCjQAkPDLLVDVr5Utad1v0vy/ZDQMrx X-Received: by 2002:adf:ce03:: with SMTP id p3-v6mr10383228wrn.110.1526392118574; Tue, 15 May 2018 06:48:38 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1526392118; cv=none; d=google.com; s=arc-20160816; b=tkFrapXnC4P9ch+GMO5uA7yoM5rkEagd1Mdz1KoF8nLUrGf3A5vnTQ0nKsqgQ/PnOO Bqhxkq+qNQSAoKUB3mEsmxcQqka1ggk1Ptc68ivltKKNpt/ciDX5vfVt7gEfyp8+XbAB m8GNA60DqMg0PPzydBDlDGz/7XEv5GoCghVhdWpvbg2LG5iMdJgNkaAem+uNA5UFMTLo bpbT96umkR6wPPmF8WZWbsUaUpIQxvOGSSgn/GEBtJFYC2J3bBNMD8rQ5Fm49nPc+b4w fX67Sd9c+E6ECCSi0ebsFMbdOljdnU5oB+CLhwgAF7hGkOW4AvxCd1SpuCqpgeNc3Wve NWPQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=message-id:date:subject:cc:to:from:arc-authentication-results; bh=c4Py/sOOtZ7K8PBOR7dpZaphJYQ9gjhVhonMoudT89U=; b=TuLBqtkX2vZ1gS9jg0lIdHjQPm5HUfzwaOC52YJnUVGIZLivTrcQFt7B9rpvQXMCHu 0zlv9yODx5VpeJ9TmyAb+8aa1irD/6fN3EIHeXncp2Hba2Dq7rbRR/UTWFuEi5D9VrOF KvkT9wsfooRxUGSwJ7z+GtW8We+o3V9GgI3OnefzhdZ1W5IkXZTSZydugJ+e9TwjB4jc 3lXV3jjuZPIwB8aMrD4+5U8Wt5KMcdVbCQZuVYqLYYHb7XdRpp/F23U+bwHJIjbPXba6 9oKHxkZH5M9zY8xafzSmkV+YoGgqJCy7XQNYcUtMf66omUNibQIx2U3AL0RdUeNXXI1K tYXA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 2001:8b0:1d0::2 as permitted sender) smtp.mailfrom=pm215@archaic.org.uk; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=linaro.org Return-Path: Received: from orth.archaic.org.uk (orth.archaic.org.uk. [2001:8b0:1d0::2]) by mx.google.com with ESMTPS id f3-v6si300317wmf.94.2018.05.15.06.48.38 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 15 May 2018 06:48:38 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 2001:8b0:1d0::2 as permitted sender) client-ip=2001:8b0:1d0::2; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 2001:8b0:1d0::2 as permitted sender) smtp.mailfrom=pm215@archaic.org.uk; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=linaro.org Received: from pm215 by orth.archaic.org.uk with local (Exim 4.89) (envelope-from ) id 1fIaJg-0001Ll-Hq; Tue, 15 May 2018 14:48:36 +0100 From: Peter Maydell To: qemu-devel@nongnu.org Cc: patches@linaro.org, Paolo Bonzini Subject: [PATCH] memory.h: Fix typo in documentation comment Date: Tue, 15 May 2018 14:48:35 +0100 Message-Id: <20180515134835.3409-1-peter.maydell@linaro.org> X-Mailer: git-send-email 2.17.0 Signed-off-by: Peter Maydell --- include/exec/memory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.17.0 Reviewed-by: Alex Bennée diff --git a/include/exec/memory.h b/include/exec/memory.h index 525619a5f4..4fa1227f13 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -679,7 +679,7 @@ void memory_region_init_rom_device_nomigrate(MemoryRegion *mr, * memory_region_init_reservation: Initialize a memory region that reserves * I/O space. * - * A reservation region primariy serves debugging purposes. It claims I/O + * A reservation region primarily serves debugging purposes. It claims I/O * space that is not supposed to be handled by QEMU itself. Any access via * the memory API will cause an abort(). * This function is deprecated. Use memory_region_init_io() with NULL