From a128b33b8b99b0afca2b6c71b96e5a29c4c0f586 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 5 Dec 2006 17:56:13 +0000 Subject: [PATCH] The VPD engine is broken and can't actually handle placing VPD anywhere other than offset 0 within the EEPROM, so we have to put our settings at 0x100 instead. --- src/drivers/net/etherfabric.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/net/etherfabric.c b/src/drivers/net/etherfabric.c index 2d978d06..9040f0cf 100644 --- a/src/drivers/net/etherfabric.c +++ b/src/drivers/net/etherfabric.c @@ -2332,7 +2332,7 @@ static void falcon_init_spi ( struct efab_nic *efab ) { #define FALCON_MAC_ADDRESS_OFFSET(port) ( 0x310 + 0x08 * (port) ) static struct nvo_fragment falcon_eeprom_fragments[] = { - { 0, 0x100 }, + { 0x100, 0x100 }, { 0, 0 } };