HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/33540
Change subject: src/security/vboot: Remove useless 'const' ......................................................................
src/security/vboot: Remove useless 'const'
Change-Id: I3b5ca272abffe46c6a63251cf4905780f87a6836 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/security/vboot/misc.h 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/40/33540/1
diff --git a/src/security/vboot/misc.h b/src/security/vboot/misc.h index acb6dbb..725f5fd 100644 --- a/src/security/vboot/misc.h +++ b/src/security/vboot/misc.h @@ -53,7 +53,7 @@ /* * Source: security/vboot/common.c */ -struct vboot_working_data * const vboot_get_working_data(void); +struct vboot_working_data *vboot_get_working_data(void); void vboot_init_work_context(struct vb2_context *ctx); void vboot_finalize_work_context(struct vb2_context *ctx); struct vb2_shared_data *vboot_get_shared_data(void);