diff options
author | Omar Pakker <omarpakker+coreboot@gmail.com> | 2017-05-02 00:04:23 +0200 |
---|---|---|
committer | Arthur Heymans <arthur@aheymans.xyz> | 2017-05-03 20:14:05 +0200 |
commit | ecf3489df8e01003495a5943f4af2700e6c20939 (patch) | |
tree | 611a895be48cc609f4e3b5c7561a6d090171353f /util/autoport | |
parent | a93387b0d5f0e956463fc36ac2e10feb3e67b00b (diff) |
util/autoport: Add the PCI ID of the iGPU for the Intel i7 3770K
This adds one of the Xeon labeled PCI IDs used in Sandy-/Ivy Bridge
generation processors. This ID is used by the non-Xeon i7 3770K.
Change-Id: Iad7745136efeb10ff745001413f4ccb6488b5ec0
Signed-off-by: Omar Pakker <omarpakker+coreboot@gmail.com>
Reviewed-on: https://review.coreboot.org/19516
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
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 86142e8cb9..65042550fd 100644 --- a/util/autoport/sandybridge.go +++ b/util/autoport/sandybridge.go @@ -144,7 +144,7 @@ func init() { for _, id := range []uint16{ 0x0102, 0x0106, 0x010a, 0x0112, 0x0116, 0x0122, 0x0126, 0x0156, - 0x0166, + 0x0162, 0x0166, } { RegisterPCI(0x8086, id, GenericVGA{GenericPCI{Comment: "VGA controller"}}) } |