From patchwork Sun Apr 11 13:24:34 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin Ian King X-Patchwork-Id: 1464846 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=) Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4FJCJp6zhLz9sW1 for ; Sun, 11 Apr 2021 23:24:42 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1lVa4t-0002Zv-2U; Sun, 11 Apr 2021 13:24:39 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1lVa4p-0002Zp-EY for fwts-devel@lists.ubuntu.com; Sun, 11 Apr 2021 13:24:35 +0000 Received: from cpc154979-craw9-2-0-cust193.16-3.cable.virginm.net ([80.193.200.194] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1lVa4p-0001aI-6I; Sun, 11 Apr 2021 13:24:35 +0000 From: Colin King To: fwts-devel@lists.ubuntu.com Subject: [PATCH] fwts-coreboot: remove blank line and fix a comment in a typo Date: Sun, 11 Apr 2021 14:24:34 +0100 Message-Id: <20210411132434.1189380-1-colin.king@canonical.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" From: Colin Ian King Minor code clean up, no functional change Signed-off-by: Colin Ian King Acked-by: Alex Hung Acked-by: Ivan Hu --- src/lib/src/fwts_coreboot.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/src/fwts_coreboot.c b/src/lib/src/fwts_coreboot.c index 3d69ac8c..a54973cb 100644 --- a/src/lib/src/fwts_coreboot.c +++ b/src/lib/src/fwts_coreboot.c @@ -29,7 +29,6 @@ fwts_list* fwts_coreboot_cbmem_log(void) char *console; console = fwts_coreboot_cbmem_console_dump(); - if (!console) return NULL; @@ -44,7 +43,7 @@ fwts_list* fwts_coreboot_cbmem_log(void) fwts_list* fwts_coreboot_cbmem_log(void) { /* - * TODO: add arm plattform support + * TODO: add arm platform support */ return NULL; }