From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mx.groups.io with SMTP id smtpd.web10.1898.1678137984252750213 for ; Mon, 06 Mar 2023 13:26:28 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=JbXWwHIG; spf=pass (domain: intel.com, ip: 192.55.52.136, mailfrom: andrei.warkentin@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1678137988; x=1709673988; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=SCIfSR2Ena5tHutL4lzWoyeBn2LouFUoT2kUuTbErMk=; b=JbXWwHIGKKVlhTp4aKe4IlYaV+bjIt/3g8aKEq+eALWercLxWgDzKvDt Dfx6gTTsKWU7Kdsw+wIHwAO9hQ1V5LQ7i9XMCP8BjAzA1w6HdPHlh6cU1 53w9x1esGoFc0iT0YqsXoUF8x+ohiSCWNwk70JrwZrb88nwLcVreJZqtB I812blA5ligKrLXnGHIPHgW3+FVKxtc+RZrH7SOJEUELxosT5qu//1lIJ 2xl2dwgP9gZ+SLE9PYJjhpfilpDUssdoCZZ0APT9HP/DV2j+Y177vhI4k hHe5zFvHH4WiToParv1Osl26+6nALSX4zei0hVVKPv7eX8+jqrQTyFbEH Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10641"; a="315335571" X-IronPort-AV: E=Sophos;i="5.98,238,1673942400"; d="scan'208";a="315335571" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Mar 2023 13:26:28 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10641"; a="819444264" X-IronPort-AV: E=Sophos;i="5.98,238,1673942400"; d="scan'208";a="819444264" Received: from awarkent-mobl1.amr.corp.intel.com ([10.212.90.17]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Mar 2023 13:26:27 -0800 From: "Andrei Warkentin" To: devel@edk2.groups.io Cc: Andrei Warkentin , Daniel Schaefer , Michael D Kinney , Liming Gao , Zhiguang Liu , Sunil V L Subject: [edk2 4/7] MdePkg: BaseCpuLib: Fix RISCV CpuSleep symbol name. Date: Mon, 6 Mar 2023 15:26:12 -0600 Message-Id: <20230306212615.7400-5-andrei.warkentin@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230306212615.7400-1-andrei.warkentin@intel.com> References: <20230306212615.7400-1-andrei.warkentin@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit CpuSleep, not _CpuSleep. Cc: Daniel Schaefer Cc: Michael D Kinney Cc: Liming Gao Cc: Zhiguang Liu Reviewed-by: Sunil V L Signed-off-by: Andrei Warkentin --- MdePkg/Library/BaseCpuLib/RiscV/Cpu.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MdePkg/Library/BaseCpuLib/RiscV/Cpu.S b/MdePkg/Library/BaseCpuLib/RiscV/Cpu.S index 375b91d31427..d6560087e080 100644 --- a/MdePkg/Library/BaseCpuLib/RiscV/Cpu.S +++ b/MdePkg/Library/BaseCpuLib/RiscV/Cpu.S @@ -10,9 +10,9 @@ .align 3 .section .text -.global ASM_PFX(_CpuSleep) +.global ASM_PFX(CpuSleep) -ASM_PFX(_CpuSleep): +ASM_PFX(CpuSleep): wfi ret -- 2.25.1