mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
efi_loader: capsule: drop __weak from efi_get_public_key_data()
As we discussed in ML, currently a device tree is the only place to store public keys for capsule authentication. So __weak is not necessary for now. Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
212f078496
commit
50b05eb606
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ out:
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(CONFIG_EFI_CAPSULE_AUTHENTICATE)
|
#if defined(CONFIG_EFI_CAPSULE_AUTHENTICATE)
|
||||||
int __weak efi_get_public_key_data(void **pkey, efi_uintn_t *pkey_len)
|
int efi_get_public_key_data(void **pkey, efi_uintn_t *pkey_len)
|
||||||
{
|
{
|
||||||
const void *fdt_blob = gd->fdt_blob;
|
const void *fdt_blob = gd->fdt_blob;
|
||||||
const void *blob;
|
const void *blob;
|
||||||
|
|
Loading…
Reference in a new issue