1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 14:11:15 +02:00

Make image parameter of cb_check_image const

Change-Id: I811b3d6f1710154e055b03d5f27b1a8d9b3c0a43
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/17943
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Nico Huber
2016-05-02 11:39:35 +02:00
committed by Martin Roth
parent 40ba6fd048
commit 441d2a4f33
2 changed files with 8 additions and 8 deletions

View File

@ -308,7 +308,7 @@ void cleanup_cpu_msr(void);
/* cbtable.c */
int cb_parse_table(const char **vendor, const char **model);
int cb_check_image(uint8_t *bios, int size);
int cb_check_image(const uint8_t *bios, int size);
/* dmi.c */
#if defined(__i386__) || defined(__x86_64__)