From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C3726C433DF for ; Tue, 16 Jun 2020 09:10:23 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 940E020679 for ; Tue, 16 Jun 2020 09:10:23 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="dRZ0MGic" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 940E020679 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=distanz.ch Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-riscv-bounces+infradead-linux-riscv=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender:Cc:List-Subscribe: List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id:Message-Id:Date: Subject:To:From:Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=VCSnDlWQQOXLNPniN7EtyknA4nluEUqEQ0gUXSmKw8w=; b=dRZ0MGicfFgslm5WWWbK2Pt67r KSwzmRzyfyGJlGx7Vy8zCzWAuufxFOlIY7TXKzDAo/QwL/d0vQQFOFsDfnH6qcbV81aNyjl44Z7xJ 2CyDlwHBkavpZouF6azJTbL2Bzk6hY1BXph2nSfSzy7X8uxV/QQPAOqr4R4gePx8J2bjThGwx7lG4 LAhoT+GLQ/9zjrBFFQVGH+HcfikaJGgUsTtXZk9HNzOBJx4S+K9AQBxfvkvqaszO5yY76zUyiWc88 1i9mHxZdj5oXKsEOqicid6aPKppDeI5h8fVXpCnelKoyZS6ZAPH3CI4eJ5XhQfLE1GN6wguazyQkP umH+uJWA==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jl7bq-0001J8-4H; Tue, 16 Jun 2020 09:10:22 +0000 Received: from sym2.noone.org ([178.63.92.236]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1jl7bn-0001Ia-Dt for linux-riscv@lists.infradead.org; Tue, 16 Jun 2020 09:10:20 +0000 Received: by sym2.noone.org (Postfix, from userid 1002) id 49mMSN3v8kzvjc1; Tue, 16 Jun 2020 10:53:56 +0200 (CEST) From: Tobias Klauser To: Paul Walmsley , Palmer Dabbelt , Albert Ou Subject: [PATCH] riscv: fix typo in asm/hwcap.h uapi header Date: Tue, 16 Jun 2020 10:53:56 +0200 Message-Id: <20200616085356.9221-1-tklauser@distanz.ch> X-Mailer: git-send-email 2.11.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200616_021019_616054_216F7058 X-CRM114-Status: UNSURE ( 8.61 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-riscv@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-riscv@lists.infradead.org Sender: "linux-riscv" Errors-To: linux-riscv-bounces+infradead-linux-riscv=archiver.kernel.org@lists.infradead.org s/userpsace/userspace/ Signed-off-by: Tobias Klauser --- arch/riscv/include/uapi/asm/hwcap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/riscv/include/uapi/asm/hwcap.h b/arch/riscv/include/uapi/asm/hwcap.h index dee98ee28318..46dc3f5ee99f 100644 --- a/arch/riscv/include/uapi/asm/hwcap.h +++ b/arch/riscv/include/uapi/asm/hwcap.h @@ -11,7 +11,7 @@ /* * Linux saves the floating-point registers according to the ISA Linux is * executing on, as opposed to the ISA the user program is compiled for. This - * is necessary for a handful of esoteric use cases: for example, userpsace + * is necessary for a handful of esoteric use cases: for example, userspace * threading libraries must be able to examine the actual machine state in * order to fully reconstruct the state of a thread. */ -- 2.27.0