Browse Source

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.
tags/v0.9.3
Michael Brown 17 years ago
parent
commit
a128b33b8b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/drivers/net/etherfabric.c

+ 1
- 1
src/drivers/net/etherfabric.c View File

@@ -2332,7 +2332,7 @@ static void falcon_init_spi ( struct efab_nic *efab ) {
2332 2332
 #define FALCON_MAC_ADDRESS_OFFSET(port) ( 0x310 + 0x08 * (port) )
2333 2333
 
2334 2334
 static struct nvo_fragment falcon_eeprom_fragments[] = {
2335
-	{ 0, 0x100 },
2335
+	{ 0x100, 0x100 },
2336 2336
 	{ 0, 0 }
2337 2337
 };
2338 2338
 

Loading…
Cancel
Save