diff options
| author | Heinrich Schuchardt <[email protected]> | 2018-07-07 15:36:04 +0200 |
|---|---|---|
| committer | Alexander Graf <[email protected]> | 2018-07-25 15:00:24 +0200 |
| commit | 8aa8360eca31b3b9f34645015df0556ce0e20e6d (patch) | |
| tree | b090f30556c8862accf3b074afc12568d83c6ac5 /include | |
| parent | 9b30232bfc6b98e7caa517bbec77f00fb46c93de (diff) | |
efi_loader: correct signature of CalculateCrc32()
Use const for the buffer. We are not changing the buffer.
Use efi_uintn_t where prescribed by the UEFI spec.
Prefer u32 over uint32_t.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/efi_api.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index c98cc34908b..ebf2a3bc18c 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -165,8 +165,9 @@ struct efi_boot_services { void **handle, ...); efi_status_t (EFIAPI *uninstall_multiple_protocol_interfaces)( void *handle, ...); - efi_status_t (EFIAPI *calculate_crc32)(void *data, - unsigned long data_size, uint32_t *crc32); + efi_status_t (EFIAPI *calculate_crc32)(const void *data, + efi_uintn_t data_size, + u32 *crc32); void (EFIAPI *copy_mem)(void *destination, const void *source, size_t length); void (EFIAPI *set_mem)(void *buffer, size_t size, uint8_t value); |
