security/vboot: Remove useless 'const'
Change-Id: I3b5ca272abffe46c6a63251cf4905780f87a6836 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33540 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Joel Kitching <kitching@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
committed by
Patrick Georgi
parent
f371b051b0
commit
eb1dea8faf
@ -24,7 +24,7 @@
|
|||||||
#include <security/vboot/symbols.h>
|
#include <security/vboot/symbols.h>
|
||||||
#include <security/vboot/vboot_common.h>
|
#include <security/vboot/vboot_common.h>
|
||||||
|
|
||||||
struct vboot_working_data * const vboot_get_working_data(void)
|
struct vboot_working_data *vboot_get_working_data(void)
|
||||||
{
|
{
|
||||||
struct vboot_working_data *wd = NULL;
|
struct vboot_working_data *wd = NULL;
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ struct vboot_working_data {
|
|||||||
/*
|
/*
|
||||||
* Source: security/vboot/common.c
|
* 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_init_work_context(struct vb2_context *ctx);
|
||||||
void vboot_finalize_work_context(struct vb2_context *ctx);
|
void vboot_finalize_work_context(struct vb2_context *ctx);
|
||||||
struct vb2_shared_data *vboot_get_shared_data(void);
|
struct vb2_shared_data *vboot_get_shared_data(void);
|
||||||
|
Reference in New Issue
Block a user