Edward O'Callaghan (eocallaghan@alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7242
-gerrit
commit c8c47a3f62980024b9343796beac0053dd6a9d33 Author: Edward O'Callaghan eocallaghan@alterapraxis.com Date: Wed Oct 29 12:30:42 2014 +1100
northbridge/intel/sandybridge/gma.c: Tidy up pci_device_ids
Change-Id: I65f51d88f56ba7556d1705c68d9de49b6e02676f Signed-off-by: Edward O'Callaghan eocallaghan@alterapraxis.com --- src/northbridge/intel/sandybridge/gma.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-)
diff --git a/src/northbridge/intel/sandybridge/gma.c b/src/northbridge/intel/sandybridge/gma.c index 247c723..2a13e3b 100644 --- a/src/northbridge/intel/sandybridge/gma.c +++ b/src/northbridge/intel/sandybridge/gma.c @@ -626,10 +626,18 @@ static struct device_operations gma_func0_ops = { .ops_pci = &gma_pci_ops, };
-static const unsigned short pci_device_ids[] = { 0x0102, 0x0106, 0x010a, 0x0112, - 0x0116, 0x0122, 0x0126, 0x0156, - 0x0166, - 0 }; +static const unsigned short pci_device_ids[] = { + 0x0102, + 0x0106, + 0x010a, + 0x0112, + 0x0116, + 0x0122, + 0x0126, + 0x0156, + 0x0166, + 0 +};
static const struct pci_driver gma __pci_driver = { .ops = &gma_func0_ops,