From 7731932937b2f0f4f968a6c8c3b2ebb4429de034 Mon Sep 17 00:00:00 2001 From: Werner Zeh Date: Wed, 30 May 2018 07:05:26 +0200 Subject: i210: Add additional PCI-ID to the i210 driver MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-on: https://review.coreboot.org/26683 Tested-by: build bot (Jenkins) Reviewed-by: Mario Scheithauer Reviewed-by: Kyösti Mälkki --- src/drivers/intel/i210/i210.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/drivers/intel/i210/i210.c') 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, -- cgit v1.2.3