From patchwork Thu Aug 10 06:58:39 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Russell Currey X-Patchwork-Id: 800106 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3xSfBw1cL6z9s7M for ; Thu, 10 Aug 2017 16:59:36 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=messagingengine.com header.i=@messagingengine.com header.b="XCjzTBcX"; dkim-atps=neutral Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 3xSfBw0Sq2zDqyp for ; Thu, 10 Aug 2017 16:59:36 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=messagingengine.com header.i=@messagingengine.com header.b="XCjzTBcX"; dkim-atps=neutral X-Original-To: skiboot@lists.ozlabs.org Delivered-To: skiboot@lists.ozlabs.org Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 3xSfBR486NzDqrP for ; Thu, 10 Aug 2017 16:59:11 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=messagingengine.com header.i=@messagingengine.com header.b="XCjzTBcX"; dkim-atps=neutral Received: from compute6.internal (compute6.nyi.internal [10.202.2.46]) by mailout.nyi.internal (Postfix) with ESMTP id 4065621B19; Thu, 10 Aug 2017 02:59:08 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute6.internal (MEProxy); Thu, 10 Aug 2017 02:59:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc :x-sasl-enc; s=fm1; bh=jboQbUPuUzRnhc2RYR2nzRXEsblmmUUKFd9lSooux /w=; b=XCjzTBcXR68sC0YTAytO9hShylRv1Ni/INCyi5H7UmiQFpe+Xu2mMyM/B sbZ41rR+BLrZye0bzTUGqCW8v/3GTxs/4LsVXUJUTsZ0/3dS6qXxDvmGeEUCWlAO K/RGJzwoP1a88N9s6zNjnSTIHdJy2I6bM/6pwI4sDNdAQCGL+HylIFxHpAzmgXg+ e9HOtkkf/WfXZhlU2fHHVwzg4VxlZ4+DUFF5SIRodJU+I0RhL/tZGXeen1zCoICq IaPx+ELKqNSqtcK40PL1vjLJIqsqkJROIfhXiwDjRXgU1Bp+vb7tNBsbgkktCUKl OuLKaph3atQg2+OsPT9zXYwHpx7oA== X-ME-Sender: X-Sasl-enc: KHmCpWpXyQaU3jFVvv35EU1BXpIUHyO2ASYfltnLQmGU 1502348347 Received: from snap.ozlabs.ibm.com (unknown [122.99.82.10]) by mail.messagingengine.com (Postfix) with ESMTPA id 9B6EC2479F; Thu, 10 Aug 2017 02:59:06 -0400 (EDT) From: Russell Currey To: skiboot@lists.ozlabs.org Date: Thu, 10 Aug 2017 16:58:39 +1000 Message-Id: <20170810065843.13893-2-ruscur@russell.cc> X-Mailer: git-send-email 2.14.0 In-Reply-To: <20170810065843.13893-1-ruscur@russell.cc> References: <20170810065843.13893-1-ruscur@russell.cc> Subject: [Skiboot] [PATCH 2/6] phb4: Fix duplicate in EEH register dump X-BeenThere: skiboot@lists.ozlabs.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Mailing list for skiboot development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: mikey@neuling.org MIME-Version: 1.0 Errors-To: skiboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Skiboot" Signed-off-by: Russell Currey Reviewed-by: Andrew Donnellan --- hw/phb4.c | 1 - 1 file changed, 1 deletion(-) diff --git a/hw/phb4.c b/hw/phb4.c index b207b6a1..7e8f68bf 100644 --- a/hw/phb4.c +++ b/hw/phb4.c @@ -1925,7 +1925,6 @@ static void phb4_eeh_dump_regs(struct phb4 *p) PHBERR(p, " devCmdStatus = %08x\n", s->devCmdStatus); PHBERR(p, " devSecStatus = %08x\n", s->devSecStatus); PHBERR(p, " rootErrorStatus = %08x\n", s->rootErrorStatus); - PHBERR(p, " uncorrErrorStatus = %08x\n", s->uncorrErrorStatus); PHBERR(p, " corrErrorStatus = %08x\n", s->corrErrorStatus); PHBERR(p, " uncorrErrorStatus = %08x\n", s->uncorrErrorStatus);