public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH] RISC-V/PlatformPkg: Fix compilation breakage in OpenSBI
@ 2021-03-24 13:59 Loic Devulder
  2021-03-25  0:46 ` [edk2-devel] " Abner Chang
  0 siblings, 1 reply; 3+ messages in thread
From: Loic Devulder @ 2021-03-24 13:59 UTC (permalink / raw)
  To: devel

platform_ops and platform structures have older entries that don't exist
anymore on recent OpenSBI versions, so we can remove them.

Cc: Abner Chang <abner.chang@hpe.com>
Cc: Daniel Schaefer <daniel.schaefer@hpe.com>
Cc: Gilbert Chen <gilbert.chen@hpe.com>

Signed-off-by: Loic Devulder <ldevulder@suse.com>
---
 .../PlatformPkg/Library/OpensbiPlatformLibNull/Platform.c     | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/Platform/RISC-V/PlatformPkg/Library/OpensbiPlatformLibNull/Platform.c b/Platform/RISC-V/PlatformPkg/Library/OpensbiPlatformLibNull/Platform.c
index e78d811f4c..84b5f5dec8 100644
--- a/Platform/RISC-V/PlatformPkg/Library/OpensbiPlatformLibNull/Platform.c
+++ b/Platform/RISC-V/PlatformPkg/Library/OpensbiPlatformLibNull/Platform.c
@@ -28,8 +28,7 @@ const struct sbi_platform_operations platform_ops = {
     .timer_event_stop   = NULL,
     .timer_event_start  = NULL,
     .timer_init         = NULL,
-    .system_reboot      = NULL,
-    .system_shutdown    = NULL
+    .system_reset       = NULL
 };
 
 const struct sbi_platform platform = {
@@ -39,6 +38,5 @@ const struct sbi_platform platform = {
     .features           = 0,
     .hart_count         = 0,
     .hart_stack_size    = 0,
-    .disabled_hart_mask = 0,
     .platform_ops_addr  = 0
 };
-- 
2.30.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-25 10:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-24 13:59 [PATCH] RISC-V/PlatformPkg: Fix compilation breakage in OpenSBI Loic Devulder
2021-03-25  0:46 ` [edk2-devel] " Abner Chang
2021-03-25 10:01   ` Loic Devulder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox