From patchwork Thu Sep 12 01:37:17 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 1161326 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [203.11.71.2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 46TLxF2Hv7z9sCJ for ; Thu, 12 Sep 2019 11:37:37 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=fail (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="fucDOIwf"; dkim-atps=neutral Received: from bilbo.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 46TLxF0bWmzF3xm for ; Thu, 12 Sep 2019 11:37:37 +1000 (AEST) X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (bilbo.ozlabs.org [IPv6:2401:3900:2:1::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 46TLx242B8zF3w5 for ; Thu, 12 Sep 2019 11:37:26 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=pass (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="fucDOIwf"; dkim-atps=neutral Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 46TLx16kDdz9sNT; Thu, 12 Sep 2019 11:37:25 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ozlabs.org; s=201707; t=1568252245; bh=IXzuoIN5+gz6RVhQiiUshU00x3xcRLULdyHqakEzmwY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=fucDOIwfX2PA+HWsI/AZ+UiEO1Lz2+OQkiz4g1f0U56bMwD16dfdUwlJLt3fHuTcQ XqXwSjO0dXWahGWZJDh9rLyhHsBuVJxr5gnlVsEOAQo0DCjBYw1k2lzf84PSD9rW4T /lLItJLvCvnbBsoD7QfAp5+nAaeW5BUbocnEqWE4TTcHGy93BrYHRYHIMQjXacFKzE 02mB+1pV8VS46BwEpsxC4j5f5fPH7CQcwczLcT/dc3XRYvCVnU6ng8laRQaWKqO6F/ EnWLv0NAkoCaYIlRHgPTw9vLETNbQqMdxJw4rhfqwQhL2PhMdGa8mrky1IqQTGQWN2 s8IOZjsCFlWTw== From: Amitay Isaacs To: pdbg@lists.ozlabs.org Date: Thu, 12 Sep 2019 11:37:17 +1000 Message-Id: <20190912013722.21341-3-amitay@ozlabs.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190912013722.21341-1-amitay@ozlabs.org> References: <20190912013722.21341-1-amitay@ozlabs.org> MIME-Version: 1.0 Subject: [Pdbg] [PATCH 2/7] libpdbg: Remove unused enumeration X-BeenThere: pdbg@lists.ozlabs.org X-Mailman-Version: 2.1.29 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 Errors-To: pdbg-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Pdbg" Signed-off-by: Amitay Isaacs --- libpdbg/operations.h | 1 - 1 file changed, 1 deletion(-) diff --git a/libpdbg/operations.h b/libpdbg/operations.h index 5b8da8d..72f008c 100644 --- a/libpdbg/operations.h +++ b/libpdbg/operations.h @@ -55,7 +55,6 @@ #define MXSPR_SPR(opcode) (((opcode >> 16) & 0x1f) | ((opcode >> 6) & 0x3e0)) -enum fsi_system_type {FSI_SYSTEM_P8, FSI_SYSTEM_P9W, FSI_SYSTEM_P9R, FSI_SYSTEM_P9Z}; enum chip_type get_chip_type(uint64_t chip_id); #endif