From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mx.groups.io with SMTP id smtpd.web10.5673.1677196505855436099 for ; Thu, 23 Feb 2023 15:55:14 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=I9OT4wLk; spf=pass (domain: intel.com, ip: 134.134.136.20, 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=1677196514; x=1708732514; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=SCIfSR2Ena5tHutL4lzWoyeBn2LouFUoT2kUuTbErMk=; b=I9OT4wLkX1UJnaqM460l6PQU3lwhvZzqUokXr6cg7EZS2j45U0wnj2+j OMpOU49WuGzza31gi8TnJ/1LBaqc6veuS3jRu2eQwsvaptA1o+xUlmpah O9qY7Ud6wlFNATBTyFtWEGBBBqzY/TNkSJn1IRO00bivGbY7iO189sf8V J9NXG/mFQGQ9Q2WNR/MQmM4yLep0FGtMCWHRw3lXmIqd2wpkjLKrVX0Qi bwHxuYfVoKguzi9YPAiW7Mg1jS5l7UPqi26xfBVaFVOKxNkRthc5xMolC dV+YRGoTtJZJUOcij/VE13/uOjmJTd3RTGrJS7EIocFsrl6inKlUfbCdF w==; X-IronPort-AV: E=McAfee;i="6500,9779,10630"; a="321549977" X-IronPort-AV: E=Sophos;i="5.97,322,1669104000"; d="scan'208";a="321549977" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Feb 2023 15:55:14 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10630"; a="702984518" X-IronPort-AV: E=Sophos;i="5.97,322,1669104000"; d="scan'208";a="702984518" Received: from cywong-mobl.amr.corp.intel.com (HELO awarkent-mobl1.amr.corp.intel.com) ([10.212.53.4]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Feb 2023 15:55:13 -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: [PATCH 4/7] MdePkg: BaseCpuLib: Fix RISCV CpuSleep symbol name. Date: Thu, 23 Feb 2023 17:54:51 -0600 Message-Id: <20230223235454.23556-5-andrei.warkentin@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230223235454.23556-1-andrei.warkentin@intel.com> References: <20230223235454.23556-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