summaryrefslogtreecommitdiff
path: root/ArmPlatformPkg
diff options
context:
space:
mode:
authorArd Biesheuvel <ard.biesheuvel@linaro.org>2016-10-25 19:13:55 +0100
committerArd Biesheuvel <ard.biesheuvel@linaro.org>2016-10-28 16:26:50 +0100
commit5211ece936eedb0a29ea170b449e0af8edff8db2 (patch)
tree1ef42e87cf7deb168d1cb0e41e796a542493af9d /ArmPlatformPkg
parent252abf12e967b0c6619861e99c4101e64443d91f (diff)
downloadedk2-5211ece936eedb0a29ea170b449e0af8edff8db2.tar.gz
ArmPlatformPkg/ArmVExpressFastBootDxe: eliminate deprecated string functions
Get rid of functions that are no longer available when defining DISABLE_NEW_DEPRECATED_INTERFACES Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Diffstat (limited to 'ArmPlatformPkg')
-rw-r--r--ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c b/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
index fe4ade5c9..a01bf3c67 100644
--- a/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
+++ b/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
@@ -273,7 +273,7 @@ ArmFastbootPlatformInit (
// Copy handle and partition name
Entry->PartitionHandle = AllHandles[LoopIndex];
- StrnCpy (
+ CopyMem (
Entry->PartitionName,
PartitionEntries[PartitionNode->PartitionNumber - 1].PartitionName, // Partition numbers start from 1.
PARTITION_NAME_MAX_LENGTH
@@ -341,7 +341,8 @@ ArmFastbootPlatformFlashPartition (
CHAR16 PartitionNameUnicode[60];
BOOLEAN PartitionFound;
- AsciiStrToUnicodeStr (PartitionName, PartitionNameUnicode);
+ AsciiStrToUnicodeStrS (PartitionName, PartitionNameUnicode,
+ ARRAY_SIZE (PartitionNameUnicode));
PartitionFound = FALSE;
Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&(mPartitionListHead));
@@ -445,7 +446,7 @@ ArmFastbootPlatformGetVar (
)
{
if (AsciiStrCmp (Name, "product")) {
- AsciiStrCpy (Value, FixedPcdGetPtr (PcdFirmwareVendor));
+ AsciiStrCpyS (Value, 61, FixedPcdGetPtr (PcdFirmwareVendor));
} else {
*Value = '\0';
}
@@ -479,7 +480,7 @@ ArmFastbootPlatformOemCommand (
{
CHAR16 CommandUnicode[65];
- AsciiStrToUnicodeStr (Command, CommandUnicode);
+ AsciiStrToUnicodeStrS (Command, CommandUnicode, ARRAY_SIZE (CommandUnicode));
if (AsciiStrCmp (Command, "Demonstrate") == 0) {
DEBUG ((EFI_D_ERROR, "ARM OEM Fastboot command 'Demonstrate' received.\n"));