From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45547) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YYDBY-0002JE-2j for qemu-devel@nongnu.org; Wed, 18 Mar 2015 08:35:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YYDBX-00022i-4H for qemu-devel@nongnu.org; Wed, 18 Mar 2015 08:34:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42279) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YYDBW-00022a-Sy for qemu-devel@nongnu.org; Wed, 18 Mar 2015 08:34:55 -0400 Date: Wed, 18 Mar 2015 13:34:47 +0100 From: "Michael S. Tsirkin" Message-ID: <1426682025-20844-6-git-send-email-mst@redhat.com> References: <1426682025-20844-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1426682025-20844-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 5/8] pcie_aer: fix typos in pcie_aer_inject_error comment List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Chen Fan , Peter Maydell From: Chen Fan Refer to "PCI Express Base Spec3.0", this comments can't fit the description in spec, so we should fix them. Signed-off-by: Chen Fan Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/pci/pcie_aer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/pci/pcie_aer.c b/hw/pci/pcie_aer.c index c7fad34..9daebc2 100644 --- a/hw/pci/pcie_aer.c +++ b/hw/pci/pcie_aer.c @@ -618,11 +618,11 @@ static bool pcie_aer_inject_uncor_error(PCIEAERInject *inj, bool is_fatal) * non-Function specific error must be recorded in all functions. * It is the responsibility of the caller of this function. * It is also caller's responsibility to determine which function should - * report the rerror. + * report the error. * * 6.2.4 Error Logging - * 6.2.5 Sqeunce of Device Error Signaling and Logging Operations - * table 6-2: Flowchard Showing Sequence of Device Error Signaling and Logging + * 6.2.5 Sequence of Device Error Signaling and Logging Operations + * table 6-2: Flowchart Showing Sequence of Device Error Signaling and Logging * Operations */ int pcie_aer_inject_error(PCIDevice *dev, const PCIEAERErr *err) -- MST