Explorar el Código

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 hace 17 años
padre
commit
a128b33b8b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/drivers/net/etherfabric.c

+ 1
- 1
src/drivers/net/etherfabric.c Ver fichero

@@ -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…
Cancelar
Guardar