Werner Zeh has uploaded this change for review. ( https://review.coreboot.org/26683
Change subject: i210: Add additional PCI-ID to the i210 driver ......................................................................
i210: Add additional PCI-ID to the i210 driver
When the i210 MACPHY is operated in the SERDES Backplane mode (which depends on the programmed firmware image), its PCI-ID will be 0x1537. This does however not change the programming interface for the MAC address. Therefore add this new PCI-ID to the driver so that the MAC address can be programmed in this operation mode as well.
Change-Id: I608535202c49e40690381c2b2ab26322d62cfb37 Signed-off-by: Werner Zeh werner.zeh@siemens.com --- M src/drivers/intel/i210/i210.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/83/26683/1
diff --git a/src/drivers/intel/i210/i210.c b/src/drivers/intel/i210/i210.c index d554745..2eae6a9 100644 --- a/src/drivers/intel/i210/i210.c +++ b/src/drivers/intel/i210/i210.c @@ -234,7 +234,7 @@ .ops_pci = 0, };
-static const unsigned short i210_device_ids[] = { 0x1538, 0x1533, 0 }; +static const unsigned short i210_device_ids[] = { 0x1537, 0x1538, 0x1533, 0 };
static const struct pci_driver i210_driver __pci_driver = { .ops = &i210_ops,