From patchwork Tue Jul 17 07:19:25 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 944766 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 41VBY00sc2z9s3Z for ; Tue, 17 Jul 2018 17:21:40 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="NgUvj8pU"; 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 41VBXz644PzF3Hn for ; Tue, 17 Jul 2018 17:21:39 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="NgUvj8pU"; dkim-atps=neutral X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (bilbo.ozlabs.org [203.11.71.1]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 41VBVV1ns4zF3Hl for ; Tue, 17 Jul 2018 17:19:30 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="NgUvj8pU"; dkim-atps=neutral Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPSA id 41VBVT58c9z9rxs; Tue, 17 Jul 2018 17:19:29 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ozlabs.org; s=201707; t=1531811969; bh=0TIoL3bb0eLrzz11Mia8pGpUKxgG6mxxHBAvt5y6qSA=; h=From:To:Cc:Subject:Date:From; b=NgUvj8pU9bEvVXKREvgQR7rAN3Ty6kaFaRbqeiQswB8q6cleTKCfdp86T15a3XE0x WG0fReb0ii1TnGrZDZZkJwFjk5AyluOjJoAUEExB2qjm/3wb0ZPE6k08mdAdgh21En HuEbQQAPQMq8P4r3u5y+ZVHX6U5tUZOYXOFFpDSE8DZ15qB5njEIDKQOI0ucoeD+fO SERc3bvTAfTzPcPidRFLbeNDWrTCyHWGRNHNV9uBP+qc/1b5jQoVxTB+EBQYRx3T1U 0mZYRg2t6oSNE7XX5HQ8C9i3WfjJFkHfB+xUG7aWcZMNvYANB8g6wf6/RoS2QO2MTH zqOwxWBYmpWEw== From: Amitay Isaacs To: pdbg@lists.ozlabs.org Date: Tue, 17 Jul 2018 17:19:25 +1000 Message-Id: <20180717071925.7135-1-amitay@ozlabs.org> X-Mailer: git-send-email 2.17.1 Subject: [Pdbg] [PATCH] libpdbg: Fix a typo X-BeenThere: pdbg@lists.ozlabs.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "mailing list for https://github.com/open-power/pdbg development" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Amitay Isaacs MIME-Version: 1.0 Errors-To: pdbg-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Pdbg" Signed-off-by: Amitay Isaacs --- libpdbg/cfam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpdbg/cfam.c b/libpdbg/cfam.c index 97d0e9f..5437701 100644 --- a/libpdbg/cfam.c +++ b/libpdbg/cfam.c @@ -321,7 +321,7 @@ static int cfam_hmfsi_probe(struct pdbg_target *target) fsi_read(fsi_parent, 0x3404, &value); value |= 1 << (31 - port); if ((rc = fsi_write(fsi_parent, 0x3404, value))) { - PR_ERROR("Unale to enable HMFSI port %d\n", port); + PR_ERROR("Unable to enable HMFSI port %d\n", port); return rc; }