diff options
author | Angel Pons <th3fanbus@gmail.com> | 2019-01-16 16:16:52 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-03-18 09:20:05 +0000 |
commit | 08caa792e608fbf72307a5d59d8e24aef0736cb0 (patch) | |
tree | cea0a2ce0e8c2c9e7423bda34e3afd2e900e4421 /util/autoport | |
parent | 9b1ae44b28d23f67420d90ec6b60cc346d54832a (diff) |
util/autoport: Trim gfx.did to size
Since the values are hardcoded, we might as well hardcode values that
make sense.
Change-Id: I3ac0e2d74a42c1fe55b1cdc3e2a970ae80cc9f37
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/30963
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/autoport')
-rw-r--r-- | util/autoport/sandybridge.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/autoport/sandybridge.go b/util/autoport/sandybridge.go index 582a8569ac..997259815b 100644 --- a/util/autoport/sandybridge.go +++ b/util/autoport/sandybridge.go @@ -55,7 +55,7 @@ func (i sandybridgemc) Scan(ctx Context, addr PCIDevData) { "gfx.link_frequency_270_mhz": FormatBool(link_frequency > 200000), /* FIXME:XX hardcoded. */ "gfx.ndid": "3", - "gfx.did": "{ 0x80000100, 0x80000240, 0x80000410, 0x80000410, 0x00000005 }", + "gfx.did": "{ 0x80000100, 0x80000240, 0x80000410 }", }, Children: []DevTreeNode{ { |