From patchwork Wed Mar 15 09:59:00 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Benjamin Herrenschmidt X-Patchwork-Id: 739097 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 3vjnJS1b7zz9s1h for ; Wed, 15 Mar 2017 21:04:24 +1100 (AEDT) Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 3vjnJR6SbqzDqfS for ; Wed, 15 Mar 2017 21:04:23 +1100 (AEDT) X-Original-To: skiboot@lists.ozlabs.org Delivered-To: skiboot@lists.ozlabs.org Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 3vjnJ429RDzDqcL for ; Wed, 15 Mar 2017 21:04:04 +1100 (AEDT) Received: from pasglop.au.ibm.com (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.13.8) with ESMTP id v2F9x7Mk010085; Wed, 15 Mar 2017 05:00:13 -0500 From: Benjamin Herrenschmidt To: skiboot@lists.ozlabs.org Date: Wed, 15 Mar 2017 20:59:00 +1100 Message-Id: <20170315095900.13962-11-benh@kernel.crashing.org> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20170315095900.13962-1-benh@kernel.crashing.org> References: <20170315095900.13962-1-benh@kernel.crashing.org> Subject: [Skiboot] [PATCH 11/11] xive: Fix typo in a comment 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: , MIME-Version: 1.0 Errors-To: skiboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Skiboot" Signed-off-by: Benjamin Herrenschmidt --- hw/xive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xive.c b/hw/xive.c index d0c3b43..bb5f0b0 100644 --- a/hw/xive.c +++ b/hw/xive.c @@ -3607,7 +3607,7 @@ static int64_t opal_xive_set_queue_info(uint64_t vp, uint32_t prio, EQ_W1_ESn_P | EQ_W1_ESn_Q)); /* Enable or disable. We always enable backlog for an - * enable queue otherwise escalations won't work. + * enabled queue otherwise escalations won't work. */ if (qflags & OPAL_XIVE_EQ_ENABLED) eq.w0 |= EQ_W0_VALID | EQ_W0_BACKLOG;