[coreboot-gerrit] Patch set updated for coreboot: 623aa25 Intel(R) 945G/GC/GZ

HAOUAS Elyes (ehaouas@noos.fr) gerrit at coreboot.org
Mon Apr 20 09:50:40 CEST 2015


HAOUAS Elyes (ehaouas at noos.fr) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9804

-gerrit

commit 623aa25b602aa3ab338d0af47dcccb3e51dcc846
Author: Elyes HAOUAS <ehaouas at noos.fr>
Date:   Sun Apr 19 11:50:50 2015 +0200

    Intel(R) 945G/GC/GZ
    
    Add 82945G/GC/GZ Integrated Graphics Controller PCI IDs.
    
    Change-Id: I548368ca580c2c4ec98d90778054ec12ad5b290e
    Signed-off-by: Elyes HAOUAS <ehaouas at noos.fr>
---
 src/northbridge/intel/i945/gma.c | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/src/northbridge/intel/i945/gma.c b/src/northbridge/intel/i945/gma.c
index cee0640..e5f2d35 100644
--- a/src/northbridge/intel/i945/gma.c
+++ b/src/northbridge/intel/i945/gma.c
@@ -519,7 +519,14 @@ static struct device_operations gma_func1_ops = {
 	.ops_pci		= &gma_pci_ops,
 };
 
-static const unsigned short pci_device_ids[] = { 0x27a2, 0x27ae, 0 };
+static const unsigned short pci_device_ids[] = {
+	0x2772,
+	0x2776,
+	0x27a2,
+	0x27a6,
+	0x27ae,
+	0
+};
 
 static const struct pci_driver i945_gma_func0_driver __pci_driver = {
 	.ops	= &gma_func0_ops,
@@ -530,5 +537,5 @@ static const struct pci_driver i945_gma_func0_driver __pci_driver = {
 static const struct pci_driver i945_gma_func1_driver __pci_driver = {
 	.ops	= &gma_func1_ops,
 	.vendor	= PCI_VENDOR_ID_INTEL,
-	.device	= 0x27a6,
+	.devices	= pci_device_ids,
 };



More information about the coreboot-gerrit mailing list