From eb1dea8faf3ead8599848f1f85cebe8756704b06 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Sun, 16 Jun 2019 15:45:36 +0200 Subject: security/vboot: Remove useless 'const' Change-Id: I3b5ca272abffe46c6a63251cf4905780f87a6836 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/c/coreboot/+/33540 Reviewed-by: Angel Pons Reviewed-by: Aaron Durbin Reviewed-by: Joel Kitching Tested-by: build bot (Jenkins) --- src/security/vboot/common.c | 2 +- src/security/vboot/misc.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/security/vboot') diff --git a/src/security/vboot/common.c b/src/security/vboot/common.c index 8f8165a7c5..bd72683e00 100644 --- a/src/security/vboot/common.c +++ b/src/security/vboot/common.c @@ -24,7 +24,7 @@ #include #include -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; diff --git a/src/security/vboot/misc.h b/src/security/vboot/misc.h index acb6dbbd02..725f5fd436 100644 --- a/src/security/vboot/misc.h +++ b/src/security/vboot/misc.h @@ -53,7 +53,7 @@ struct vboot_working_data { /* * 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); -- cgit v1.2.3