aboutsummaryrefslogtreecommitdiffstats
path: root/programmer.h
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2016-05-02 11:39:35 +0200
committerMartin Roth <martinroth@google.com>2017-01-13 17:32:32 +0100
commit441d2a4f33a911e47299c350e321084c59a68ddf (patch)
tree22d8dce7176b505e4d34e3c3ba59f2b531434958 /programmer.h
parent40ba6fd0486b9845a951dbe042b1121687353c1a (diff)
downloadflashrom-441d2a4f33a911e47299c350e321084c59a68ddf.tar.gz
flashrom-441d2a4f33a911e47299c350e321084c59a68ddf.tar.bz2
flashrom-441d2a4f33a911e47299c350e321084c59a68ddf.zip
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>
Diffstat (limited to 'programmer.h')
-rw-r--r--programmer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/programmer.h b/programmer.h
index bd8e98d5..38534131 100644
--- a/programmer.h
+++ b/programmer.h
@@ -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__)