summaryrefslogtreecommitdiffstats
path: root/src/drivers/net/etherfabric.c
diff options
context:
space:
mode:
authorMichael Brown2006-12-05 18:56:13 +0100
committerMichael Brown2006-12-05 18:56:13 +0100
commita128b33b8b99b0afca2b6c71b96e5a29c4c0f586 (patch)
treec6aca8840bcc93e7491fea34fcfdc972008ef8bd /src/drivers/net/etherfabric.c
parentAdjust EEPROM/flash detection to fit expected manufacturing practice. (diff)
downloadipxe-a128b33b8b99b0afca2b6c71b96e5a29c4c0f586.tar.gz
ipxe-a128b33b8b99b0afca2b6c71b96e5a29c4c0f586.tar.xz
ipxe-a128b33b8b99b0afca2b6c71b96e5a29c4c0f586.zip
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.
Diffstat (limited to 'src/drivers/net/etherfabric.c')
-rw-r--r--src/drivers/net/etherfabric.c2
1 files changed, 1 insertions, 1 deletions
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 }
};