According to the bug:
https://bugzilla.tianocore.org/show_bug.cgi?id=2777
the deprecated code under DISABLE_NEW_DEPRECATED_INTERFACES
will be removed, which will result in compilation breakage
of the Raspberry Pi platforms. Prevent that by switching to
the different PcdSet API.

Signed-off-by: Pete Batard <p...@akeo.ie>
---
 Platform/RaspberryPi/Drivers/ConfigDxe/ConfigDxe.c   | 34 ++++++++++----------
 Platform/RaspberryPi/Drivers/DisplayDxe/DisplayDxe.c |  4 +--
 2 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/Platform/RaspberryPi/Drivers/ConfigDxe/ConfigDxe.c 
b/Platform/RaspberryPi/Drivers/ConfigDxe/ConfigDxe.c
index bab494a7c254..9f3372a7631d 100644
--- a/Platform/RaspberryPi/Drivers/ConfigDxe/ConfigDxe.c
+++ b/Platform/RaspberryPi/Drivers/ConfigDxe/ConfigDxe.c
@@ -202,7 +202,7 @@ SetupVariables (
                   &gConfigDxeFormSetGuid,
                   NULL, &Size, &Var32);
   if (EFI_ERROR (Status)) {
-    PcdSet32 (PcdCpuClock, PcdGet32 (PcdCpuClock));
+    PcdSet32S (PcdCpuClock, PcdGet32 (PcdCpuClock));
   }
 
   Size = sizeof (UINT32);
@@ -210,25 +210,25 @@ SetupVariables (
                             &gConfigDxeFormSetGuid,
                             NULL, &Size, &Var32);
   if (EFI_ERROR (Status)) {
-    PcdSet32 (PcdCustomCpuClock, PcdGet32 (PcdCustomCpuClock));
+    PcdSet32S (PcdCustomCpuClock, PcdGet32 (PcdCustomCpuClock));
   }
 
   if (mModelFamily >= 4 && mModelInstalledMB > 3 * 1024) {
     /*
      * This allows changing PcdRamLimitTo3GB in forms.
      */
-    PcdSet32 (PcdRamMoreThan3GB, 1);
+    PcdSet32S (PcdRamMoreThan3GB, 1);
 
     Size = sizeof (UINT32);
     Status = gRT->GetVariable (L"RamLimitTo3GB",
                                &gConfigDxeFormSetGuid,
                                NULL, &Size, &Var32);
     if (EFI_ERROR (Status)) {
-      PcdSet32 (PcdRamLimitTo3GB, PcdGet32 (PcdRamLimitTo3GB));
+      PcdSet32S (PcdRamLimitTo3GB, PcdGet32 (PcdRamLimitTo3GB));
     }
   } else {
-    PcdSet32 (PcdRamMoreThan3GB, 0);
-    PcdSet32 (PcdRamLimitTo3GB, 0);
+    PcdSet32S (PcdRamMoreThan3GB, 0);
+    PcdSet32S (PcdRamLimitTo3GB, 0);
   }
 
   Size = sizeof (UINT32);
@@ -236,7 +236,7 @@ SetupVariables (
                   &gConfigDxeFormSetGuid,
                   NULL, &Size, &Var32);
   if (EFI_ERROR (Status)) {
-    PcdSet32 (PcdSystemTableMode, PcdGet32 (PcdSystemTableMode));
+    PcdSet32S (PcdSystemTableMode, PcdGet32 (PcdSystemTableMode));
   }
 
   Size = sizeof(AssetTagVar);
@@ -260,7 +260,7 @@ SetupVariables (
                   &gConfigDxeFormSetGuid,
                   NULL, &Size, &Var32);
   if (EFI_ERROR (Status)) {
-    PcdSet32 (PcdSdIsArasan, PcdGet32 (PcdSdIsArasan));
+    PcdSet32S (PcdSdIsArasan, PcdGet32 (PcdSdIsArasan));
   }
 
   Size = sizeof (UINT32);
@@ -268,7 +268,7 @@ SetupVariables (
                   &gConfigDxeFormSetGuid,
                   NULL, &Size, &Var32);
   if (EFI_ERROR (Status)) {
-    PcdSet32 (PcdMmcDisableMulti, PcdGet32 (PcdMmcDisableMulti));
+    PcdSet32S (PcdMmcDisableMulti, PcdGet32 (PcdMmcDisableMulti));
   }
 
   Size = sizeof (UINT32);
@@ -276,7 +276,7 @@ SetupVariables (
                   &gConfigDxeFormSetGuid,
                   NULL, &Size, &Var32);
   if (EFI_ERROR (Status)) {
-    PcdSet32 (PcdMmcForce1Bit, PcdGet32 (PcdMmcForce1Bit));
+    PcdSet32S (PcdMmcForce1Bit, PcdGet32 (PcdMmcForce1Bit));
   }
 
   Size = sizeof (UINT32);
@@ -284,7 +284,7 @@ SetupVariables (
                   &gConfigDxeFormSetGuid,
                   NULL, &Size, &Var32);
   if (EFI_ERROR (Status)) {
-    PcdSet32 (PcdMmcForceDefaultSpeed, PcdGet32 (PcdMmcForceDefaultSpeed));
+    PcdSet32S (PcdMmcForceDefaultSpeed, PcdGet32 (PcdMmcForceDefaultSpeed));
   }
 
   Size = sizeof (UINT32);
@@ -292,7 +292,7 @@ SetupVariables (
                   &gConfigDxeFormSetGuid,
                   NULL, &Size, &Var32);
   if (EFI_ERROR (Status)) {
-    PcdSet32 (PcdMmcSdDefaultSpeedMHz, PcdGet32 (PcdMmcSdDefaultSpeedMHz));
+    PcdSet32S (PcdMmcSdDefaultSpeedMHz, PcdGet32 (PcdMmcSdDefaultSpeedMHz));
   }
 
   Size = sizeof (UINT32);
@@ -300,7 +300,7 @@ SetupVariables (
                   &gConfigDxeFormSetGuid,
                   NULL, &Size, &Var32);
   if (EFI_ERROR (Status)) {
-    PcdSet32 (PcdMmcSdHighSpeedMHz, PcdGet32 (PcdMmcSdHighSpeedMHz));
+    PcdSet32S (PcdMmcSdHighSpeedMHz, PcdGet32 (PcdMmcSdHighSpeedMHz));
   }
 
   Size = sizeof (UINT32);
@@ -308,7 +308,7 @@ SetupVariables (
                   &gConfigDxeFormSetGuid,
                   NULL, &Size, &Var32);
   if (EFI_ERROR (Status)) {
-    PcdSet32 (PcdDebugEnableJTAG, PcdGet32 (PcdDebugEnableJTAG));
+    PcdSet32S (PcdDebugEnableJTAG, PcdGet32 (PcdDebugEnableJTAG));
   }
 
   Size = sizeof (UINT8);
@@ -316,7 +316,7 @@ SetupVariables (
                   &gConfigDxeFormSetGuid,
                   NULL, &Size, &Var8);
   if (EFI_ERROR (Status)) {
-    PcdSet8 (PcdDisplayEnableScaledVModes, PcdGet8 
(PcdDisplayEnableScaledVModes));
+    PcdSet8S (PcdDisplayEnableScaledVModes, PcdGet8 
(PcdDisplayEnableScaledVModes));
   }
 
   Size = sizeof (UINT32);
@@ -324,7 +324,7 @@ SetupVariables (
                   &gConfigDxeFormSetGuid,
                   NULL, &Size, &Var32);
   if (EFI_ERROR (Status)) {
-    PcdSet32 (PcdDisplayEnableSShot, PcdGet32 (PcdDisplayEnableSShot));
+    PcdSet32S (PcdDisplayEnableSShot, PcdGet32 (PcdDisplayEnableSShot));
   }
 
   if (mModelFamily == 4) {
@@ -381,7 +381,7 @@ ApplyVariables (
     if (Status != EFI_SUCCESS) {
       DEBUG ((DEBUG_ERROR, "Couldn't set the CPU speed: %r\n", Status));
     } else {
-      PcdSet32 (PcdCustomCpuClock, Rate / FREQ_1_MHZ);
+      PcdSet32S (PcdCustomCpuClock, Rate / FREQ_1_MHZ);
     }
   }
 
diff --git a/Platform/RaspberryPi/Drivers/DisplayDxe/DisplayDxe.c 
b/Platform/RaspberryPi/Drivers/DisplayDxe/DisplayDxe.c
index b880ca827bd6..96fd4ccd611b 100644
--- a/Platform/RaspberryPi/Drivers/DisplayDxe/DisplayDxe.c
+++ b/Platform/RaspberryPi/Drivers/DisplayDxe/DisplayDxe.c
@@ -485,11 +485,11 @@ DriverStart (
     goto Done;
   }
 
-  PcdSet8 (PcdDisplayEnableScaledVModes,
+  PcdSet8S (PcdDisplayEnableScaledVModes,
     PcdGet8 (PcdDisplayEnableScaledVModes) & ALL_MODES);
 
   if (PcdGet8 (PcdDisplayEnableScaledVModes) == 0) {
-    PcdSet8 (PcdDisplayEnableScaledVModes, JUST_NATIVE_ENABLED);
+    PcdSet8S (PcdDisplayEnableScaledVModes, JUST_NATIVE_ENABLED);
   }
 
   mLastMode = 0;
-- 
2.21.0.windows.1


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#63554): https://edk2.groups.io/g/devel/message/63554
Mute This Topic: https://groups.io/mt/75903174/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to