From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33621) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YYCRU-0000mz-T8 for qemu-devel@nongnu.org; Wed, 18 Mar 2015 07:47:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YYCRT-0000hG-Lv for qemu-devel@nongnu.org; Wed, 18 Mar 2015 07:47:20 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59130) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YYCRT-0000h5-Ff for qemu-devel@nongnu.org; Wed, 18 Mar 2015 07:47:19 -0400 Date: Wed, 18 Mar 2015 12:47:13 +0100 From: "Michael S. Tsirkin" Message-ID: <1426679230-27957-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] pcie_aer: fix comment to match pcie spec List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Chen Fan , Michael Tokarev Code comment says "table 6-2" but in fact it's is not a table, it is "Figure 6-2" on page 479. Cc: Chen Fan Reported-by: Michael Tokarev Signed-off-by: Michael S. Tsirkin --- hw/pci/pcie_aer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/pci/pcie_aer.c b/hw/pci/pcie_aer.c index 9126058..eaa3e6e 100644 --- a/hw/pci/pcie_aer.c +++ b/hw/pci/pcie_aer.c @@ -622,8 +622,8 @@ static bool pcie_aer_inject_uncor_error(PCIEAERInject *inj, bool is_fatal) * * 6.2.4 Error 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 + * Figure 6-2: Flowchart Showing Sequence of Device Error Signaling and Logging + * Operations */ int pcie_aer_inject_error(PCIDevice *dev, const PCIEAERErr *err) { -- MST