aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/gm45/gma.c
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2016-09-08 22:21:54 +0200
committerMartin Roth <martinroth@google.com>2016-09-19 19:24:41 +0200
commit0b1a5c259b92ce6685577af631c2b76134514eab (patch)
tree57f7dcdabe0ab836ca86b05b435e84c3bedc3e14 /src/northbridge/intel/gm45/gma.c
parentc51522f516ac8a8ab094449446d94bb7006226b7 (diff)
gm45/gma.c: use correct id string for fake VBT
The correct id string for gm45 is "$VBT CANTIGA ". This can be found in the gm45 option rom: "strings vbios.bin | grep VBT". Change-Id: Icd67a87dac774b4b3c211511c784c4fb4e2ea97c Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/16551 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/northbridge/intel/gm45/gma.c')
-rw-r--r--src/northbridge/intel/gm45/gma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/gm45/gma.c b/src/northbridge/intel/gm45/gma.c
index dbcb86758a..14f695e919 100644
--- a/src/northbridge/intel/gm45/gma.c
+++ b/src/northbridge/intel/gm45/gma.c
@@ -741,7 +741,7 @@ static void gma_func0_init(struct device *dev)
/* Linux relies on VBT for panel info. */
generate_fake_intel_oprom(&conf->gfx, dev,
- "$VBT IRONLAKE-MOBILE");
+ "$VBT CANTIGA ");
}
}