Explorar el Código

Return -EIO when verification fails, instead of -EINVAL.

tags/v0.9.3
Michael Brown hace 18 años
padre
commit
6ceaa158da
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/drivers/nvs/nvs.c

+ 1
- 1
src/drivers/nvs/nvs.c Ver fichero

@@ -93,7 +93,7 @@ static int nvs_verify ( struct nvs_device *nvs, unsigned int address,
93 93
 	if ( memcmp ( data, read_data, len ) != 0 ) {
94 94
 		DBG ( "NVS %p verification failed at %#04x+%d\n",
95 95
 		      nvs, address, len );
96
-		return -EINVAL;
96
+		return -EIO;
97 97
 	}
98 98
 
99 99
 	return 0;

Loading…
Cancelar
Guardar