From nobody Sat Nov 23 12:25:34 2024 Received: from cmccmta2.chinamobile.com (cmccmta6.chinamobile.com [111.22.67.139]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 916D915D1; Mon, 18 Nov 2024 02:30:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=111.22.67.139 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731897057; cv=none; b=HhJGpavSd0bsILLdHh5M0P1hmFdxR1/cLQc2ixaaNUNCPolabsDOTTaecyda9mma8SzBq80jU0SfWP7nRZzS2E4Z81zTSNGBlMkUVGlLhj2BXl2ueQBNHPyrHTmZo+KtFcj6TCXnu5InLRp2i4kZdZrd3LIYZsc1SwSb+Or+GWI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731897057; c=relaxed/simple; bh=TtXfN5H4J4ndzSU8WuIWwo4OK0Z8eJ7MsbV2nYDHcf8=; h=From:To:Cc:Subject:Date:Message-Id; b=siMM/GNTdua9BmY6FiH5lsxYp2XEYkllOczNF+1eeBBg14Q255buA43prLtjmrNkrL0Dl/iIZsJlyXKIhGW4HkWP3JuLlHyRHVjjrH64Ttp5wh2KJ20vsQCALi3vqePbe2XHVTvoTimFxQN41KE0RPiRA0QsYl/gzBtFUFvmSF0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=cmss.chinamobile.com; spf=pass smtp.mailfrom=cmss.chinamobile.com; arc=none smtp.client-ip=111.22.67.139 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=cmss.chinamobile.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=cmss.chinamobile.com X-RM-TagInfo: emlType=0 X-RM-SPAM-FLAG: 00000000 Received: from spf.mail.chinamobile.com (unknown[10.188.0.87]) by rmmx-syy-dmz-app05-12005 (RichMail) with SMTP id 2ee5673aa68a3eb-3b401; Mon, 18 Nov 2024 10:29:31 +0800 (CST) X-RM-TRANSID: 2ee5673aa68a3eb-3b401 X-RM-TagInfo: emlType=0 X-RM-SPAM-FLAG: 00000000 Received: from ubuntu.localdomain (unknown[10.55.1.70]) by rmsmtp-syy-appsvr01-12001 (RichMail) with SMTP id 2ee1673aa68a6d9-a67ca; Mon, 18 Nov 2024 10:29:31 +0800 (CST) X-RM-TRANSID: 2ee1673aa68a6d9-a67ca From: Zhu Jun To: thierry.reding@gmail.com Cc: jonathanh@nvidia.com, linux-tegra@vger.kernel.org, linux-kernel@vger.kernel.org, zhujun2@cmss.chinamobile.com Subject: [PATCH] soc/tegra: bpmp: Fix typo in bpmp-abi.h Date: Sun, 17 Nov 2024 18:29:28 -0800 Message-Id: <20241118022928.11305-1-zhujun2@cmss.chinamobile.com> X-Mailer: git-send-email 2.17.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" The word 'traget' is wrong, so fix it. Signed-off-by: Zhu Jun --- include/soc/tegra/bpmp-abi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/soc/tegra/bpmp-abi.h b/include/soc/tegra/bpmp-abi.h index 6b995a8f0f6d..dc0789c20333 100644 --- a/include/soc/tegra/bpmp-abi.h +++ b/include/soc/tegra/bpmp-abi.h @@ -3755,7 +3755,7 @@ enum mrq_pwr_limit_cmd { * @defgroup bpmp_pwr_limit_type PWR_LIMIT TYPEs * @{ */ -/** @brief Limit value specifies traget cap */ +/** @brief Limit value specifies target cap */ #define PWR_LIMIT_TYPE_TARGET_CAP 0U /** @brief Limit value specifies maximum possible target cap */ #define PWR_LIMIT_TYPE_BOUND_MAX 1U --=20 2.17.1