summaryrefslogtreecommitdiffstats
path: root/src/lib/edid.c
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2016-06-16 05:57:49 +0200
committerNico Huber <nico.h@gmx.de>2016-09-08 23:19:06 +0200
commit994a4a16a54f20fdce3f43b33f768943fd199a93 (patch)
treeafecdcf614c8dcbd346d6b55756f51268194094f /src/lib/edid.c
parent3ab8ce52f9c1ab921175aa930f6b8fe91b78e62b (diff)
downloadcoreboot-994a4a16a54f20fdce3f43b33f768943fd199a93.tar.gz
coreboot-994a4a16a54f20fdce3f43b33f768943fd199a93.tar.bz2
coreboot-994a4a16a54f20fdce3f43b33f768943fd199a93.zip
edid: Fix a function signature
Change-Id: Id69cecb5cdd21c2d92aca74658f39c790f7b7b01 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/15211 Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/lib/edid.c')
-rw-r--r--src/lib/edid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/edid.c b/src/lib/edid.c
index 8bcb95630f9f..d1b9c9fc47c6 100644
--- a/src/lib/edid.c
+++ b/src/lib/edid.c
@@ -1547,7 +1547,7 @@ void edid_set_framebuffer_bits_per_pixel(struct edid *edid, int fb_bpp,
* Take an edid, and create a framebuffer. Set vbe_valid to 1.
*/
-void set_vbe_mode_info_valid(struct edid *edid, uintptr_t fb_addr)
+void set_vbe_mode_info_valid(const struct edid *edid, uintptr_t fb_addr)
{
edid_fb.physical_address = fb_addr;
edid_fb.x_resolution = edid->x_resolution;