aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2023-05-18 16:32:58 +0200
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2023-05-21 19:50:56 +0000
commit2f7e3db2003e8ee22fc51abb0229869510fa8099 (patch)
treebd26e21ff1a79c7d3a2794db3d5b0807fc5b3976
parenteae75064a8c3c3cd08302f31561e051e1217dc72 (diff)
nb/intel/gm45/gma: Fix debug note about missing panel data
Reformat the string, fix whitespace, add single-quote before genitive `s`, and correct the GPU tool name `intel_reg`. Change-Id: I277603063806927837867a454ae0875578228109 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/75379 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
-rw-r--r--src/northbridge/intel/gm45/gma.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/northbridge/intel/gm45/gma.c b/src/northbridge/intel/gm45/gma.c
index 0986ad5dcf..c53e93cafa 100644
--- a/src/northbridge/intel/gm45/gma.c
+++ b/src/northbridge/intel/gm45/gma.c
@@ -115,12 +115,11 @@ u16 get_blc_pwm_freq_value(void)
}
if (i == blc_array_len)
- printk(BIOS_NOTICE, "Your panels EDID `%s` wasn't found in the"
- "lookup table.\n You may have issues with your panels"
- "backlight.\n If you want to help improving coreboot"
- "please report: this EDID string\n and the result"
- "of `intel_read read BLC_PWM_CTL`"
- "(from intel-gpu-tools)\n while running vendor BIOS\n",
+ printk(BIOS_NOTICE, "Your panel's EDID `%s` wasn't found in the lookup table.\n"
+ "You may have issues with your panel's backlight.\n"
+ "If you want to help improving coreboot please report: this EDID string\n"
+ "and the result of `intel_reg read BLC_PWM_CTL` (from intel-gpu-tools)\n"
+ "while running vendor BIOS\n",
edid_ascii_string);
return blc_pwm_freq;