mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-27 07:34:06 +02:00
OvmfPkg: QemuFlashFvbServicesRuntimeDxe: strip trailing whitespace
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18665 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
490ce43d92
commit
141f0c6445
@ -1,13 +1,13 @@
|
|||||||
/**@file
|
/**@file
|
||||||
|
|
||||||
Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
http://opensource.org/licenses/bsd-license.php
|
http://opensource.org/licenses/bsd-license.php
|
||||||
|
|
||||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
|
||||||
Module Name:
|
Module Name:
|
||||||
|
|
||||||
@ -75,7 +75,7 @@ EFI_FVB_MEDIA_INFO mPlatformFvbMediaInfo[] = {
|
|||||||
FixedPcdGet32 (PcdFlashNvStorageFtwSpareSize) +
|
FixedPcdGet32 (PcdFlashNvStorageFtwSpareSize) +
|
||||||
FixedPcdGet32 (PcdOvmfFlashNvStorageEventLogSize),
|
FixedPcdGet32 (PcdOvmfFlashNvStorageEventLogSize),
|
||||||
EFI_FVH_SIGNATURE,
|
EFI_FVH_SIGNATURE,
|
||||||
EFI_FVB2_MEMORY_MAPPED |
|
EFI_FVB2_MEMORY_MAPPED |
|
||||||
EFI_FVB2_READ_ENABLED_CAP |
|
EFI_FVB2_READ_ENABLED_CAP |
|
||||||
EFI_FVB2_READ_STATUS |
|
EFI_FVB2_READ_STATUS |
|
||||||
EFI_FVB2_WRITE_ENABLED_CAP |
|
EFI_FVB2_WRITE_ENABLED_CAP |
|
||||||
|
@ -871,7 +871,7 @@ Returns:
|
|||||||
) {
|
) {
|
||||||
return EFI_NOT_FOUND;
|
return EFI_NOT_FOUND;
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Verify the header checksum
|
// Verify the header checksum
|
||||||
//
|
//
|
||||||
@ -944,7 +944,7 @@ InitializeVariableFvHeader (
|
|||||||
(EFI_FIRMWARE_VOLUME_HEADER *) (UINTN)
|
(EFI_FIRMWARE_VOLUME_HEADER *) (UINTN)
|
||||||
PcdGet32 (PcdOvmfFlashNvStorageVariableBase);
|
PcdGet32 (PcdOvmfFlashNvStorageVariableBase);
|
||||||
|
|
||||||
Length =
|
Length =
|
||||||
(FixedPcdGet32 (PcdFlashNvStorageVariableSize) +
|
(FixedPcdGet32 (PcdFlashNvStorageVariableSize) +
|
||||||
FixedPcdGet32 (PcdFlashNvStorageFtwWorkingSize) +
|
FixedPcdGet32 (PcdFlashNvStorageFtwWorkingSize) +
|
||||||
FixedPcdGet32 (PcdFlashNvStorageFtwSpareSize) +
|
FixedPcdGet32 (PcdFlashNvStorageFtwSpareSize) +
|
||||||
@ -1139,7 +1139,7 @@ Returns:
|
|||||||
} else {
|
} else {
|
||||||
FvbDevice->DevicePath = (EFI_DEVICE_PATH_PROTOCOL *) AllocateCopyPool (sizeof (FV_PIWG_DEVICE_PATH), &mFvPIWGDevicePathTemplate);
|
FvbDevice->DevicePath = (EFI_DEVICE_PATH_PROTOCOL *) AllocateCopyPool (sizeof (FV_PIWG_DEVICE_PATH), &mFvPIWGDevicePathTemplate);
|
||||||
CopyGuid (
|
CopyGuid (
|
||||||
&((FV_PIWG_DEVICE_PATH *)FvbDevice->DevicePath)->FvDevPath.FvName,
|
&((FV_PIWG_DEVICE_PATH *)FvbDevice->DevicePath)->FvDevPath.FvName,
|
||||||
(GUID *)(UINTN)(BaseAddress + FwVolHeader->ExtHeaderOffset)
|
(GUID *)(UINTN)(BaseAddress + FwVolHeader->ExtHeaderOffset)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
/**@file
|
/**@file
|
||||||
|
|
||||||
Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
http://opensource.org/licenses/bsd-license.php
|
http://opensource.org/licenses/bsd-license.php
|
||||||
|
|
||||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
|
||||||
Module Name:
|
Module Name:
|
||||||
|
|
||||||
FwBlockService.h
|
FwBlockService.h
|
||||||
|
|
||||||
Abstract:
|
Abstract:
|
||||||
|
|
||||||
Firmware volume block driver for Intel Firmware Hub (FWH) device
|
Firmware volume block driver for Intel Firmware Hub (FWH) device
|
||||||
|
Loading…
x
Reference in New Issue
Block a user