From patchwork Wed Sep 22 10:04:30 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: 1531149 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=canonical.com header.i=@canonical.com header.a=rsa-sha256 header.s=20210705 header.b=fy048aME; dkim-atps=neutral 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 4HDv6G66bRz9sR4 for ; Wed, 22 Sep 2021 20:04:37 +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 1mSz7A-0008TA-UE; Wed, 22 Sep 2021 10:04:32 +0000 Received: from smtp-relay-canonical-1.internal ([10.131.114.174] helo=smtp-relay-canonical-1.canonical.com) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1mSz78-0008T4-TJ for fwts-devel@lists.ubuntu.com; Wed, 22 Sep 2021 10:04:30 +0000 Received: from localhost (1.general.cking.uk.vpn [10.172.193.212]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-1.canonical.com (Postfix) with ESMTPSA id 8E9353F104; Wed, 22 Sep 2021 10:04:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1632305070; bh=6ZOWvBQgJQOzmi+c4wQovq3iUm/OQZlXs/wdMMWehEY=; h=From:To:Subject:Date:Message-Id:MIME-Version:Content-Type; b=fy048aMEZ+WIuR8+jhfzq9IZMQ6lnPdyvare+S3WvI1HXwu2wyiZdc8vAnctYIG1Z 8TWt7BpZdiWanpSlHfywJ3rfKLUyBamzT4AuJ10Nz3jyf9pRc0ewcMkPlq55q0RPFv LS9p8tGr8at/OmqTdXnG3e9f+8emChEQ9ahsQObfjmVjA0xCpi71bPyF+6OtVF4mn/ dzeE+6NQXtS5aJKOBInaWR8SXAYSSarQ8VGFIR0QGE5oIzaywt3StK4Fy0mqsJQzjd JgnzvTlxBNGKie1jZUnmgVv3kmKlQ3o8HtzAY6rxEs6gsZX1QZPZ9tVJgIlGz1iTNP FN/rO0OTFZVZA== From: Colin King To: fwts-devel@lists.ubuntu.com Subject: [PATCH] smccc_test: fix missing ) in pr_info call Date: Wed, 22 Sep 2021 11:04:30 +0100 Message-Id: <20210922100430.161434-1-colin.king@canonical.com> X-Mailer: git-send-email 2.32.0 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 Missing ) will cause a build failure, fix this. Signed-off-by: Colin Ian King Acked-by: Alex Hung Acked-by: Ivan Hu --- smccc_test/smccc_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smccc_test/smccc_test.c b/smccc_test/smccc_test.c index 553399eb..eb0826d6 100644 --- a/smccc_test/smccc_test.c +++ b/smccc_test/smccc_test.c @@ -229,7 +229,7 @@ static void __exit smccc_test_exit(void) static int __init smccc_test_init(void) { - pr_info(MODULE_NAME ": ARM SMCCC not supported on this kernel and architecture\n", + pr_info(MODULE_NAME ": ARM SMCCC not supported on this kernel and architecture\n"); return -ENODEV; }