diff options
author | AKASHI Takahiro | 2021-11-02 09:55:01 +0900 |
---|---|---|
committer | Heinrich Schuchardt | 2021-11-07 18:36:55 +0100 |
commit | 50b05eb6060a67d2cdf9b5114c4575e3f803551e (patch) | |
tree | c755818306345cc429031e861705d2e171e3a709 /lib | |
parent | 212f078496e4b9df0794fd4f56e0ab342b7efbf9 (diff) |
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>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_capsule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_capsule.c b/lib/efi_loader/efi_capsule.c index 44f5da61a9b..850937fd120 100644 --- a/lib/efi_loader/efi_capsule.c +++ b/lib/efi_loader/efi_capsule.c @@ -256,7 +256,7 @@ out: } #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 *blob; |