Received: by 2002:a05:6a10:8c0a:0:0:0:0 with SMTP id go10csp1921192pxb; Fri, 5 Mar 2021 03:04:53 -0800 (PST) X-Google-Smtp-Source: ABdhPJxb5PD2PGufdNL5vc388rceypVwzecUN6OGE11ViaTR0VW0xWg9/zJ1A/9HXkZsbFONLMKg X-Received: by 2002:a17:906:8443:: with SMTP id e3mr1696561ejy.370.1614942292978; Fri, 05 Mar 2021 03:04:52 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1614942292; cv=none; d=google.com; s=arc-20160816; b=vWzdekoD6bMJecvkAb9ahdX3J+PZo/IdKRTyqtZO1Q83wdWcXQ7mZukfi0Ar5CK5g3 hOYmS5ILLxb07ccZ/VGB6Ug7Oq/gIUUwicOa06+9bo8kNPUhkRWwhTtfxtW/AYuJr6Gw qfH5dyPkh+ARjSZBGUDJKtT3K2ubIpXyt2cL97+IKw+dxaestv4D5el7Kpj2VFEKFQnN Xd4hJswqK30QJudOPujHfaVse2KdFUiCIpRGdOmilaXKYA9I0+ncZfSvrFyxSq4yND+s YxyZP6VwuFXHnXiGEYsgvgJWbl2nzRESBSiWN2CsVp/8Jvq4PI1Zis8ekJ0tRpn8f7ox 3zvw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=+lpFk8y1XFyWGg1jNav34WJydgi4HTCPXN4DbDzNFxs=; b=lkD7/oYm1i3Zl/qpsB6mzoJ23qa2Eg2y6gIxCr3hhwT41fgER051M9G8CNu2kncfwZ vE+SzvihQhKdA8LiFSWVknz3X0GgmzcUAKrVcVUloHfMX0bUdr+Sgl8b4vhRg33t6h1L wAQyBEMNt+F8u77KvB0ypyykUQt+K1Sh2cjTHd+s7HTIF4q5UUIa7EoG4NqByzyzvnDa OQOzUA6zs9pQT3WRFX1esic5kTrL1qEzHMMTiyKEFwyqE+aNVC4rr7sNNPc/mNAbu7ph u0AUjN39/WX9x2DxZXVZVrrWj+QpCsoiiHlxnWZLZpEFlry36qOLGVMSgw0sXhFjIe8P lYsQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id n18si1422369edt.3.2021.03.05.03.04.30; Fri, 05 Mar 2021 03:04:52 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229898AbhCELD3 (ORCPT + 99 others); Fri, 5 Mar 2021 06:03:29 -0500 Received: from szxga05-in.huawei.com ([45.249.212.191]:13065 "EHLO szxga05-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229528AbhCELC4 (ORCPT ); Fri, 5 Mar 2021 06:02:56 -0500 Received: from DGGEMS409-HUB.china.huawei.com (unknown [172.30.72.59]) by szxga05-in.huawei.com (SkyGuard) with ESMTP id 4DsPsk6gLXzMjRb; Fri, 5 Mar 2021 19:00:42 +0800 (CST) Received: from huawei.com (10.175.113.32) by DGGEMS409-HUB.china.huawei.com (10.3.19.209) with Microsoft SMTP Server id 14.3.498.0; Fri, 5 Mar 2021 19:02:42 +0800 From: Nanyong Sun To: , , CC: , , , , , Subject: [PATCH 3/9] riscv: sbi: Fix comment of __sbi_set_timer_v01 Date: Fri, 5 Mar 2021 19:33:26 +0800 Message-ID: <20210305113332.428048-4-sunnanyong@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210305113332.428048-1-sunnanyong@huawei.com> References: <20210305113332.428048-1-sunnanyong@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.175.113.32] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix the comment of __sbi_set_timer_v01, the function name in comment is missing '__' Signed-off-by: Nanyong Sun --- arch/riscv/kernel/sbi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/riscv/kernel/sbi.c b/arch/riscv/kernel/sbi.c index f4a7db3d309e..d3bf756321a5 100644 --- a/arch/riscv/kernel/sbi.c +++ b/arch/riscv/kernel/sbi.c @@ -116,7 +116,7 @@ void sbi_clear_ipi(void) EXPORT_SYMBOL(sbi_clear_ipi); /** - * sbi_set_timer_v01() - Program the timer for next timer event. + * __sbi_set_timer_v01() - Program the timer for next timer event. * @stime_value: The value after which next timer event should fire. * * Return: None -- 2.25.1