aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/intel/i210/i210.c
diff options
context:
space:
mode:
authorWerner Zeh <werner.zeh@siemens.com>2018-05-30 07:05:26 +0200
committerMartin Roth <martinroth@google.com>2018-05-31 15:27:43 +0000
commit7731932937b2f0f4f968a6c8c3b2ebb4429de034 (patch)
tree529efaf2eaedcdfcead207e4aeb541b9483ecd9c /src/drivers/intel/i210/i210.c
parentecb4491899d83b8d5b994b464da8489877137882 (diff)
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> Reviewed-on: https://review.coreboot.org/26683 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Mario Scheithauer <mario.scheithauer@siemens.com> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/drivers/intel/i210/i210.c')
-rw-r--r--src/drivers/intel/i210/i210.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/intel/i210/i210.c b/src/drivers/intel/i210/i210.c
index d554745aa2..2eae6a92bd 100644
--- a/src/drivers/intel/i210/i210.c
+++ b/src/drivers/intel/i210/i210.c
@@ -234,7 +234,7 @@ static struct device_operations i210_ops = {
.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,