From patchwork Tue Sep 5 04:59:32 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Russell Currey X-Patchwork-Id: 809922 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3xmZKB3ZFbz9sP3 for ; Tue, 5 Sep 2017 15:00:14 +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="B9vW52kN"; 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 3xmZKB1K2GzDrJ6 for ; Tue, 5 Sep 2017 15:00:14 +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="B9vW52kN"; dkim-atps=neutral X-Original-To: skiboot@lists.ozlabs.org Delivered-To: skiboot@lists.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=russell.cc (client-ip=66.111.4.25; helo=out1-smtp.messagingengine.com; envelope-from=ruscur@russell.cc; receiver=) Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=messagingengine.com header.i=@messagingengine.com header.b="B9vW52kN"; dkim-atps=neutral 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 3xmZJz2R3kzDqYb for ; Tue, 5 Sep 2017 15:00:03 +1000 (AEST) Received: from compute6.internal (compute6.nyi.internal [10.202.2.46]) by mailout.nyi.internal (Postfix) with ESMTP id 6035620BFF; Tue, 5 Sep 2017 01:00:00 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute6.internal (MEProxy); Tue, 05 Sep 2017 01:00:00 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s=fm1; bh=XqAbfP ab8ZVqlABx3Hj+RLvtqNIs4XC/n4HMRDc0sCo=; b=B9vW52kNzDpp2HuZ/h6O7o 4rR96K2hQ+yHcTgOv0RnMi5Osv12gkyBIjEeOqFRsii3mfPTErv/CT+tirhIQZj/ g9MwtnWgYHoh782vrT+bkUe7rwWtlGA2uah69QsrunXJG3xBqjvn4+wLq8aLr2Xt Okf0tUJK5i/jUHcz0nx9E2e86iJVoJ1aPAuXy+GUy5YBOYsrk74Q6ZzxoBLbyGdC Cg9jMM4Klpb/nAp1AAO0ovjGxFIfp0WufBQlAf1dRCiDJ8PYe3L2qk62dLyqTdwk 2J+f0oHIUtbRdaQrdMRRqU4IxHK8HZAHRGA42L0SlRCruzQUEHbE0ARS+oouGrMQ == X-ME-Sender: X-Sasl-enc: 3SSuY6DAGDxatrWwbkgzaECSfTqi8fYp5+CZ/m0aFcCT 1504587599 Received: from snap.ozlabs.ibm.com (unknown [122.99.82.10]) by mail.messagingengine.com (Postfix) with ESMTPA id E2A087FA82; Tue, 5 Sep 2017 00:59:58 -0400 (EDT) From: Russell Currey To: skiboot@lists.ozlabs.org Date: Tue, 5 Sep 2017 14:59:32 +1000 Message-Id: <20170905045932.22106-1-ruscur@russell.cc> X-Mailer: git-send-email 2.14.1 Subject: [Skiboot] [PATCH] [TRIVIAL] phb4: Fix bad whitespace 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: Andrew Jeffery MIME-Version: 1.0 Errors-To: skiboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Skiboot" Cc: Andrew Jeffery Signed-off-by: Russell Currey Reviewed-by: Andrew Jeffery --- hw/phb4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/phb4.c b/hw/phb4.c index a49f9db0..dcc6c8b6 100644 --- a/hw/phb4.c +++ b/hw/phb4.c @@ -2046,7 +2046,7 @@ static int64_t phb4_set_pe(struct phb *phb, for (idx = 0; idx < RTT_TABLE_ENTRIES; idx++) p->rte_cache[idx] = pe_number; } else { - for ( idx = 0; idx < ARRAY_SIZE(p->rte_cache); idx++) + for (idx = 0; idx < ARRAY_SIZE(p->rte_cache); idx++) p->rte_cache[idx] = PHB4_RESERVED_PE_NUM(p); } memcpy((void *)p->tbl_rtt, p->rte_cache, RTT_TABLE_SIZE);