summaryrefslogtreecommitdiff
path: root/src/drivers/intel/fsp2_0/graphics.c
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2016-09-28 17:15:00 -0700
committerLee Leahy <leroy.p.leahy@intel.com>2016-09-30 01:17:20 +0200
commit5a9ca4d1ec45c3304716df0f41b0d798aebbc844 (patch)
tree4c4168d6be7258b5b090beaffbc4247fdf79cb2f /src/drivers/intel/fsp2_0/graphics.c
parent44ec92a48d4dd40f9cca2da66e875d0665b57215 (diff)
downloadcoreboot-5a9ca4d1ec45c3304716df0f41b0d798aebbc844.tar.xz
drivers/intel/fsp2_0: Fix debug display support
Fix errors in debug display support. BRANCH=none BUG=None TEST=Build FSP 2.0 (SEC/PEI core with all FSP debug on) and run on Galileo Gen2 Change-Id: I2ece056d66dc8568a7b7206970f20368ec5bf147 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/16809 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/drivers/intel/fsp2_0/graphics.c')
-rw-r--r--src/drivers/intel/fsp2_0/graphics.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/intel/fsp2_0/graphics.c b/src/drivers/intel/fsp2_0/graphics.c
index caf7bfa807..97fffdc290 100644
--- a/src/drivers/intel/fsp2_0/graphics.c
+++ b/src/drivers/intel/fsp2_0/graphics.c
@@ -20,7 +20,7 @@ enum pixel_format {
pixel_bitmask = 2, /* defined by <rgb>_mask values */
};
-const uint8_t fsp_graphics_info_guid[16] = {
+static const uint8_t fsp_graphics_info_guid[16] = {
0xce, 0x2c, 0xf6, 0x39, 0x25, 0x68, 0x69, 0x46,
0xbb, 0x56, 0x54, 0x1a, 0xba, 0x75, 0x3a, 0x07
};
@@ -137,4 +137,4 @@ void lb_framebuffer(struct lb_header *header)
__attribute__((weak)) uintptr_t fsp_soc_get_igd_bar(void)
{
return 0;
-} \ No newline at end of file
+}